Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
2115d2c1
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
2115d2c1
编写于
7月 01, 2009
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-2.6.31' into for-2.6.32
上级
1dcf98ff
da9ff1f7
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
16 addition
and
8 deletion
+16
-8
sound/soc/fsl/Kconfig
sound/soc/fsl/Kconfig
+3
-3
sound/soc/omap/omap-pcm.c
sound/soc/omap/omap-pcm.c
+7
-4
sound/soc/pxa/pxa2xx-i2s.c
sound/soc/pxa/pxa2xx-i2s.c
+6
-1
未找到文件。
sound/soc/fsl/Kconfig
浏览文件 @
2115d2c1
...
...
@@ -33,7 +33,7 @@ config SND_SOC_MPC5200_I2S
config SND_SOC_MPC5200_AC97
tristate "Freescale MPC5200 PSC in AC97 mode driver"
depends on PPC_MPC52xx && PPC_BESTCOMM
select AC97_BUS
select
SND_SOC_
AC97_BUS
select SND_MPC52xx_DMA
select PPC_BESTCOMM_GEN_BD
help
...
...
@@ -41,7 +41,7 @@ config SND_SOC_MPC5200_AC97
config SND_MPC52xx_SOC_PCM030
tristate "SoC AC97 Audio support for Phytec pcm030 and WM9712"
depends on PPC_MPC5200_SIMPLE
&& BROKEN
depends on PPC_MPC5200_SIMPLE
select SND_SOC_MPC5200_AC97
select SND_SOC_WM9712
help
...
...
@@ -50,7 +50,7 @@ config SND_MPC52xx_SOC_PCM030
config SND_MPC52xx_SOC_EFIKA
tristate "SoC AC97 Audio support for bbplan Efika and STAC9766"
depends on PPC_EFIKA
&& BROKEN
depends on PPC_EFIKA
select SND_SOC_MPC5200_AC97
select SND_SOC_STAC9766
help
...
...
sound/soc/omap/omap-pcm.c
浏览文件 @
2115d2c1
...
...
@@ -216,12 +216,15 @@ static snd_pcm_uframes_t omap_pcm_pointer(struct snd_pcm_substream *substream)
dma_addr_t
ptr
;
snd_pcm_uframes_t
offset
;
if
(
substream
->
stream
==
SNDRV_PCM_STREAM_PLAYBACK
)
ptr
=
omap_get_dma_src_pos
(
prtd
->
dma_ch
);
else
if
(
substream
->
stream
==
SNDRV_PCM_STREAM_CAPTURE
)
{
ptr
=
omap_get_dma_dst_pos
(
prtd
->
dma_ch
);
offset
=
bytes_to_frames
(
runtime
,
ptr
-
runtime
->
dma_addr
);
}
else
if
(
!
(
cpu_is_omap1510
()))
{
ptr
=
omap_get_dma_src_pos
(
prtd
->
dma_ch
);
offset
=
bytes_to_frames
(
runtime
,
ptr
-
runtime
->
dma_addr
);
}
else
offset
=
prtd
->
period_index
*
runtime
->
period_size
;
offset
=
bytes_to_frames
(
runtime
,
ptr
-
runtime
->
dma_addr
);
if
(
offset
>=
runtime
->
buffer_size
)
offset
=
0
;
...
...
sound/soc/pxa/pxa2xx-i2s.c
浏览文件 @
2115d2c1
...
...
@@ -167,6 +167,7 @@ static int pxa2xx_i2s_hw_params(struct snd_pcm_substream *substream,
BUG_ON
(
IS_ERR
(
clk_i2s
));
clk_enable
(
clk_i2s
);
dai
->
private_data
=
dai
;
pxa_i2s_wait
();
if
(
substream
->
stream
==
SNDRV_PCM_STREAM_PLAYBACK
)
...
...
@@ -255,7 +256,10 @@ static void pxa2xx_i2s_shutdown(struct snd_pcm_substream *substream,
if
((
SACR1
&
(
SACR1_DREC
|
SACR1_DRPL
))
==
(
SACR1_DREC
|
SACR1_DRPL
))
{
SACR0
&=
~
SACR0_ENB
;
pxa_i2s_wait
();
clk_disable
(
clk_i2s
);
if
(
dai
->
private_data
!=
NULL
)
{
clk_disable
(
clk_i2s
);
dai
->
private_data
=
NULL
;
}
}
}
...
...
@@ -336,6 +340,7 @@ static int pxa2xx_i2s_probe(struct platform_device *dev)
return
PTR_ERR
(
clk_i2s
);
pxa_i2s_dai
.
dev
=
&
dev
->
dev
;
pxa_i2s_dai
.
private_data
=
NULL
;
ret
=
snd_soc_register_dai
(
&
pxa_i2s_dai
);
if
(
ret
!=
0
)
clk_put
(
clk_i2s
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录