Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
98ad089f
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
98ad089f
编写于
10月 01, 2012
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ASoC: wm2200: Convert to devm APIs
Signed-off-by:
N
Mark Brown
<
broonie@opensource.wolfsonmicro.com
>
上级
a1b98e12
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
25 deletion
+14
-25
sound/soc/codecs/wm2200.c
sound/soc/codecs/wm2200.c
+14
-25
未找到文件。
sound/soc/codecs/wm2200.c
浏览文件 @
98ad089f
...
...
@@ -2011,7 +2011,7 @@ static __devinit int wm2200_i2c_probe(struct i2c_client *i2c,
wm2200
->
dev
=
&
i2c
->
dev
;
init_completion
(
&
wm2200
->
fll_lock
);
wm2200
->
regmap
=
regmap_init_i2c
(
i2c
,
&
wm2200_regmap
);
wm2200
->
regmap
=
devm_
regmap_init_i2c
(
i2c
,
&
wm2200_regmap
);
if
(
IS_ERR
(
wm2200
->
regmap
))
{
ret
=
PTR_ERR
(
wm2200
->
regmap
);
dev_err
(
&
i2c
->
dev
,
"Failed to allocate register map: %d
\n
"
,
...
...
@@ -2027,8 +2027,9 @@ static __devinit int wm2200_i2c_probe(struct i2c_client *i2c,
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
wm2200
->
core_supplies
);
i
++
)
wm2200
->
core_supplies
[
i
].
supply
=
wm2200_core_supply_names
[
i
];
ret
=
regulator_bulk_get
(
&
i2c
->
dev
,
ARRAY_SIZE
(
wm2200
->
core_supplies
),
wm2200
->
core_supplies
);
ret
=
devm_regulator_bulk_get
(
&
i2c
->
dev
,
ARRAY_SIZE
(
wm2200
->
core_supplies
),
wm2200
->
core_supplies
);
if
(
ret
!=
0
)
{
dev_err
(
&
i2c
->
dev
,
"Failed to request core supplies: %d
\n
"
,
ret
);
...
...
@@ -2044,8 +2045,9 @@ static __devinit int wm2200_i2c_probe(struct i2c_client *i2c,
}
if
(
wm2200
->
pdata
.
ldo_ena
)
{
ret
=
gpio_request_one
(
wm2200
->
pdata
.
ldo_ena
,
GPIOF_OUT_INIT_HIGH
,
"WM2200 LDOENA"
);
ret
=
devm_gpio_request_one
(
&
i2c
->
dev
,
wm2200
->
pdata
.
ldo_ena
,
GPIOF_OUT_INIT_HIGH
,
"WM2200 LDOENA"
);
if
(
ret
<
0
)
{
dev_err
(
&
i2c
->
dev
,
"Failed to request LDOENA %d: %d
\n
"
,
wm2200
->
pdata
.
ldo_ena
,
ret
);
...
...
@@ -2055,8 +2057,9 @@ static __devinit int wm2200_i2c_probe(struct i2c_client *i2c,
}
if
(
wm2200
->
pdata
.
reset
)
{
ret
=
gpio_request_one
(
wm2200
->
pdata
.
reset
,
GPIOF_OUT_INIT_HIGH
,
"WM2200 /RESET"
);
ret
=
devm_gpio_request_one
(
&
i2c
->
dev
,
wm2200
->
pdata
.
reset
,
GPIOF_OUT_INIT_HIGH
,
"WM2200 /RESET"
);
if
(
ret
<
0
)
{
dev_err
(
&
i2c
->
dev
,
"Failed to request /RESET %d: %d
\n
"
,
wm2200
->
pdata
.
reset
,
ret
);
...
...
@@ -2166,23 +2169,16 @@ static __devinit int wm2200_i2c_probe(struct i2c_client *i2c,
err_pm_runtime:
pm_runtime_disable
(
&
i2c
->
dev
);
err_reset:
if
(
wm2200
->
pdata
.
reset
)
{
if
(
wm2200
->
pdata
.
reset
)
gpio_set_value_cansleep
(
wm2200
->
pdata
.
reset
,
0
);
gpio_free
(
wm2200
->
pdata
.
reset
);
}
err_ldo:
if
(
wm2200
->
pdata
.
ldo_ena
)
{
if
(
wm2200
->
pdata
.
ldo_ena
)
gpio_set_value_cansleep
(
wm2200
->
pdata
.
ldo_ena
,
0
);
gpio_free
(
wm2200
->
pdata
.
ldo_ena
);
}
err_enable:
regulator_bulk_disable
(
ARRAY_SIZE
(
wm2200
->
core_supplies
),
wm2200
->
core_supplies
);
err_core:
regulator_bulk_free
(
ARRAY_SIZE
(
wm2200
->
core_supplies
),
wm2200
->
core_supplies
);
err_regmap:
regmap_exit
(
wm2200
->
regmap
);
err:
return
ret
;
}
...
...
@@ -2194,17 +2190,10 @@ static __devexit int wm2200_i2c_remove(struct i2c_client *i2c)
snd_soc_unregister_codec
(
&
i2c
->
dev
);
if
(
i2c
->
irq
)
free_irq
(
i2c
->
irq
,
wm2200
);
if
(
wm2200
->
pdata
.
reset
)
{
if
(
wm2200
->
pdata
.
reset
)
gpio_set_value_cansleep
(
wm2200
->
pdata
.
reset
,
0
);
gpio_free
(
wm2200
->
pdata
.
reset
);
}
if
(
wm2200
->
pdata
.
ldo_ena
)
{
if
(
wm2200
->
pdata
.
ldo_ena
)
gpio_set_value_cansleep
(
wm2200
->
pdata
.
ldo_ena
,
0
);
gpio_free
(
wm2200
->
pdata
.
ldo_ena
);
}
regulator_bulk_free
(
ARRAY_SIZE
(
wm2200
->
core_supplies
),
wm2200
->
core_supplies
);
regmap_exit
(
wm2200
->
regmap
);
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录