Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
8fed54ae
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,发现更多精彩内容 >>
提交
8fed54ae
编写于
9月 22, 2012
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ASoC: wm2000: Convert to devm_regmap_init_i2c()
Signed-off-by:
N
Mark Brown
<
broonie@opensource.wolfsonmicro.com
>
上级
ddfb43f3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
4 addition
and
9 deletion
+4
-9
sound/soc/codecs/wm2000.c
sound/soc/codecs/wm2000.c
+4
-9
未找到文件。
sound/soc/codecs/wm2000.c
浏览文件 @
8fed54ae
...
...
@@ -760,7 +760,7 @@ static int __devinit wm2000_i2c_probe(struct i2c_client *i2c,
dev_set_drvdata
(
&
i2c
->
dev
,
wm2000
);
wm2000
->
regmap
=
regmap_init_i2c
(
i2c
,
&
wm2000_regmap
);
wm2000
->
regmap
=
devm_
regmap_init_i2c
(
i2c
,
&
wm2000_regmap
);
if
(
IS_ERR
(
wm2000
->
regmap
))
{
ret
=
PTR_ERR
(
wm2000
->
regmap
);
dev_err
(
&
i2c
->
dev
,
"Failed to allocate register map: %d
\n
"
,
...
...
@@ -777,7 +777,7 @@ static int __devinit wm2000_i2c_probe(struct i2c_client *i2c,
if
(
id
!=
0x2000
)
{
dev_err
(
&
i2c
->
dev
,
"Device is not a WM2000 - ID %x
\n
"
,
id
);
ret
=
-
ENODEV
;
goto
out
_regmap_exit
;
goto
out
;
}
reg
=
wm2000_read
(
i2c
,
WM2000_REG_REVISON
);
...
...
@@ -796,7 +796,7 @@ static int __devinit wm2000_i2c_probe(struct i2c_client *i2c,
ret
=
request_firmware
(
&
fw
,
filename
,
&
i2c
->
dev
);
if
(
ret
!=
0
)
{
dev_err
(
&
i2c
->
dev
,
"Failed to acquire ANC data: %d
\n
"
,
ret
);
goto
out
_regmap_exit
;
goto
out
;
}
/* Pre-cook the concatenation of the register address onto the image */
...
...
@@ -807,7 +807,7 @@ static int __devinit wm2000_i2c_probe(struct i2c_client *i2c,
if
(
wm2000
->
anc_download
==
NULL
)
{
dev_err
(
&
i2c
->
dev
,
"Out of memory
\n
"
);
ret
=
-
ENOMEM
;
goto
out
_regmap_exit
;
goto
out
;
}
wm2000
->
anc_download
[
0
]
=
0x80
;
...
...
@@ -825,8 +825,6 @@ static int __devinit wm2000_i2c_probe(struct i2c_client *i2c,
if
(
!
ret
)
goto
out
;
out_regmap_exit:
regmap_exit
(
wm2000
->
regmap
);
out:
release_firmware
(
fw
);
return
ret
;
...
...
@@ -834,10 +832,7 @@ static int __devinit wm2000_i2c_probe(struct i2c_client *i2c,
static
__devexit
int
wm2000_i2c_remove
(
struct
i2c_client
*
i2c
)
{
struct
wm2000_priv
*
wm2000
=
dev_get_drvdata
(
&
i2c
->
dev
);
snd_soc_unregister_codec
(
&
i2c
->
dev
);
regmap_exit
(
wm2000
->
regmap
);
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录