Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
477adb06
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看板
提交
477adb06
编写于
1月 21, 2011
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-2.6.38' into for-2.6.39
上级
c358e640
20a4e7fc
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
9 deletion
+8
-9
sound/soc/codecs/wm_hubs.c
sound/soc/codecs/wm_hubs.c
+7
-8
sound/soc/davinci/davinci-evm.c
sound/soc/davinci/davinci-evm.c
+1
-1
未找到文件。
sound/soc/codecs/wm_hubs.c
浏览文件 @
477adb06
...
...
@@ -91,6 +91,7 @@ static void wait_for_dc_servo(struct snd_soc_codec *codec, unsigned int op)
static
void
calibrate_dc_servo
(
struct
snd_soc_codec
*
codec
)
{
struct
wm_hubs_data
*
hubs
=
snd_soc_codec_get_drvdata
(
codec
);
s8
offset
;
u16
reg
,
reg_l
,
reg_r
,
dcs_cfg
;
/* If we're using a digital only path and have a previously
...
...
@@ -149,16 +150,14 @@ static void calibrate_dc_servo(struct snd_soc_codec *codec)
hubs
->
dcs_codes
);
/* HPOUT1L */
if
(
reg_l
+
hubs
->
dcs_codes
>
0
&&
reg_l
+
hubs
->
dcs_codes
<
0xff
)
reg_l
+=
hubs
->
dcs_codes
;
dcs_cfg
=
reg_l
<<
WM8993_DCS_DAC_WR_VAL_1_SHIFT
;
offset
=
reg_l
;
offset
+=
hubs
->
dcs_codes
;
dcs_cfg
=
(
u8
)
offset
<<
WM8993_DCS_DAC_WR_VAL_1_SHIFT
;
/* HPOUT1R */
if
(
reg_r
+
hubs
->
dcs_codes
>
0
&&
reg_r
+
hubs
->
dcs_codes
<
0xff
)
reg_r
+=
hubs
->
dcs_codes
;
dcs_cfg
|=
reg_r
;
offset
=
reg_r
;
offset
+=
hubs
->
dcs_codes
;
dcs_cfg
|=
(
u8
)
offset
;
dev_dbg
(
codec
->
dev
,
"DCS result: %x
\n
"
,
dcs_cfg
);
...
...
sound/soc/davinci/davinci-evm.c
浏览文件 @
477adb06
...
...
@@ -223,7 +223,7 @@ static struct snd_soc_dai_link da8xx_evm_dai = {
.
stream_name
=
"AIC3X"
,
.
cpu_dai_name
=
"davinci-mcasp.0"
,
.
codec_dai_name
=
"tlv320aic3x-hifi"
,
.
codec_name
=
"tlv320aic3x-codec.
0-001a
"
,
.
codec_name
=
"tlv320aic3x-codec.
1-0018
"
,
.
platform_name
=
"davinci-pcm-audio"
,
.
init
=
evm_aic3x_init
,
.
ops
=
&
evm_ops
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录