Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
00e6a319
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
00e6a319
编写于
2月 04, 2011
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix/asoc' into for-linus
上级
ddfb3199
f019ee5f
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
7 addition
and
9 deletion
+7
-9
sound/soc/codecs/cq93vc.c
sound/soc/codecs/cq93vc.c
+1
-1
sound/soc/codecs/cx20442.c
sound/soc/codecs/cx20442.c
+3
-0
sound/soc/omap/ams-delta.c
sound/soc/omap/ams-delta.c
+0
-2
sound/soc/soc-core.c
sound/soc/soc-core.c
+0
-3
sound/soc/soc-dapm.c
sound/soc/soc-dapm.c
+3
-3
未找到文件。
sound/soc/codecs/cq93vc.c
浏览文件 @
00e6a319
...
...
@@ -153,7 +153,7 @@ static int cq93vc_resume(struct snd_soc_codec *codec)
static
int
cq93vc_probe
(
struct
snd_soc_codec
*
codec
)
{
struct
davinci_vc
*
davinci_vc
=
codec
->
dev
->
platform_data
;
struct
davinci_vc
*
davinci_vc
=
snd_soc_codec_get_drvdata
(
codec
)
;
davinci_vc
->
cq93vc
.
codec
=
codec
;
codec
->
control_data
=
davinci_vc
;
...
...
sound/soc/codecs/cx20442.c
浏览文件 @
00e6a319
...
...
@@ -367,9 +367,12 @@ static int cx20442_codec_remove(struct snd_soc_codec *codec)
return
0
;
}
static
const
u8
cx20442_reg
=
CX20442_TELOUT
|
CX20442_MIC
;
static
struct
snd_soc_codec_driver
cx20442_codec_dev
=
{
.
probe
=
cx20442_codec_probe
,
.
remove
=
cx20442_codec_remove
,
.
reg_cache_default
=
&
cx20442_reg
,
.
reg_cache_size
=
1
,
.
reg_word_size
=
sizeof
(
u8
),
.
read
=
cx20442_read_reg_cache
,
...
...
sound/soc/omap/ams-delta.c
浏览文件 @
00e6a319
...
...
@@ -507,8 +507,6 @@ static int ams_delta_cx20442_init(struct snd_soc_pcm_runtime *rtd)
/* Set up digital mute if not provided by the codec */
if
(
!
codec_dai
->
driver
->
ops
)
{
codec_dai
->
driver
->
ops
=
&
ams_delta_dai_ops
;
}
else
if
(
!
codec_dai
->
driver
->
ops
->
digital_mute
)
{
codec_dai
->
driver
->
ops
->
digital_mute
=
ams_delta_digital_mute
;
}
else
{
ams_delta_ops
.
startup
=
ams_delta_startup
;
ams_delta_ops
.
shutdown
=
ams_delta_shutdown
;
...
...
sound/soc/soc-core.c
浏览文件 @
00e6a319
...
...
@@ -1664,9 +1664,6 @@ static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
goto
out
;
found:
if
(
!
try_module_get
(
codec
->
dev
->
driver
->
owner
))
return
-
ENODEV
;
ret
=
soc_probe_codec
(
card
,
codec
);
if
(
ret
<
0
)
return
ret
;
...
...
sound/soc/soc-dapm.c
浏览文件 @
00e6a319
...
...
@@ -1742,7 +1742,7 @@ int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
int
max
=
mc
->
max
;
unsigned
int
mask
=
(
1
<<
fls
(
max
))
-
1
;
unsigned
int
invert
=
mc
->
invert
;
unsigned
int
val
,
val_mask
;
unsigned
int
val
;
int
connect
,
change
;
struct
snd_soc_dapm_update
update
;
...
...
@@ -1750,13 +1750,13 @@ int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
if
(
invert
)
val
=
max
-
val
;
val_
mask
=
mask
<<
shift
;
mask
=
mask
<<
shift
;
val
=
val
<<
shift
;
mutex_lock
(
&
widget
->
codec
->
mutex
);
widget
->
value
=
val
;
change
=
snd_soc_test_bits
(
widget
->
codec
,
reg
,
val_
mask
,
val
);
change
=
snd_soc_test_bits
(
widget
->
codec
,
reg
,
mask
,
val
);
if
(
change
)
{
if
(
val
)
/* new connection */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录