Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
3127b6aa
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
3127b6aa
编写于
9月 23, 2011
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix/asoc' into for-linus
上级
362e4e49
f0e8ed85
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
16 addition
and
30 deletion
+16
-30
sound/soc/blackfin/bf5xx-ad73311.c
sound/soc/blackfin/bf5xx-ad73311.c
+1
-1
sound/soc/codecs/wm8962.c
sound/soc/codecs/wm8962.c
+0
-26
sound/soc/soc-core.c
sound/soc/soc-core.c
+15
-3
未找到文件。
sound/soc/blackfin/bf5xx-ad73311.c
浏览文件 @
3127b6aa
...
...
@@ -128,7 +128,7 @@ static int snd_ad73311_configure(void)
return
0
;
}
static
int
bf5xx_probe
(
struct
platform_device
*
pdev
)
static
int
bf5xx_probe
(
struct
snd_soc_card
*
card
)
{
int
err
;
if
(
gpio_request
(
GPIO_SE
,
"AD73311_SE"
))
{
...
...
sound/soc/codecs/wm8962.c
浏览文件 @
3127b6aa
...
...
@@ -3479,31 +3479,6 @@ int wm8962_mic_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack)
}
EXPORT_SYMBOL_GPL
(
wm8962_mic_detect
);
#ifdef CONFIG_PM
static
int
wm8962_resume
(
struct
snd_soc_codec
*
codec
)
{
u16
*
reg_cache
=
codec
->
reg_cache
;
int
i
;
/* Restore the registers */
for
(
i
=
1
;
i
<
codec
->
driver
->
reg_cache_size
;
i
++
)
{
switch
(
i
)
{
case
WM8962_SOFTWARE_RESET
:
continue
;
default:
break
;
}
if
(
reg_cache
[
i
]
!=
wm8962_reg
[
i
])
snd_soc_write
(
codec
,
i
,
reg_cache
[
i
]);
}
return
0
;
}
#else
#define wm8962_resume NULL
#endif
#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
static
int
beep_rates
[]
=
{
500
,
1000
,
2000
,
4000
,
...
...
@@ -4015,7 +3990,6 @@ static int wm8962_remove(struct snd_soc_codec *codec)
static
struct
snd_soc_codec_driver
soc_codec_dev_wm8962
=
{
.
probe
=
wm8962_probe
,
.
remove
=
wm8962_remove
,
.
resume
=
wm8962_resume
,
.
set_bias_level
=
wm8962_set_bias_level
,
.
reg_cache_size
=
WM8962_MAX_REGISTER
+
1
,
.
reg_word_size
=
sizeof
(
u16
),
...
...
sound/soc/soc-core.c
浏览文件 @
3127b6aa
...
...
@@ -30,6 +30,7 @@
#include <linux/bitops.h>
#include <linux/debugfs.h>
#include <linux/platform_device.h>
#include <linux/ctype.h>
#include <linux/slab.h>
#include <sound/ac97_codec.h>
#include <sound/core.h>
...
...
@@ -1434,9 +1435,20 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card)
"%s"
,
card
->
name
);
snprintf
(
card
->
snd_card
->
longname
,
sizeof
(
card
->
snd_card
->
longname
),
"%s"
,
card
->
long_name
?
card
->
long_name
:
card
->
name
);
if
(
card
->
driver_name
)
strlcpy
(
card
->
snd_card
->
driver
,
card
->
driver_name
,
sizeof
(
card
->
snd_card
->
driver
));
snprintf
(
card
->
snd_card
->
driver
,
sizeof
(
card
->
snd_card
->
driver
),
"%s"
,
card
->
driver_name
?
card
->
driver_name
:
card
->
name
);
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
card
->
snd_card
->
driver
);
i
++
)
{
switch
(
card
->
snd_card
->
driver
[
i
])
{
case
'_'
:
case
'-'
:
case
'\0'
:
break
;
default:
if
(
!
isalnum
(
card
->
snd_card
->
driver
[
i
]))
card
->
snd_card
->
driver
[
i
]
=
'_'
;
break
;
}
}
if
(
card
->
late_probe
)
{
ret
=
card
->
late_probe
(
card
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录