Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
735fe4cf
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,发现更多精彩内容 >>
提交
735fe4cf
编写于
1月 12, 2010
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ASoC: Add missing __devexit and __devinit annotations
Signed-off-by:
N
Mark Brown
<
broonie@opensource.wolfsonmicro.com
>
上级
03e7a35c
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
9 deletion
+9
-9
sound/soc/codecs/da7210.c
sound/soc/codecs/da7210.c
+3
-3
sound/soc/codecs/tlv320dac33.c
sound/soc/codecs/tlv320dac33.c
+3
-3
sound/soc/codecs/tpa6130a2.c
sound/soc/codecs/tpa6130a2.c
+3
-3
未找到文件。
sound/soc/codecs/da7210.c
浏览文件 @
735fe4cf
...
...
@@ -471,8 +471,8 @@ static int da7210_init(struct da7210_priv *da7210)
}
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
static
int
da7210_i2c_probe
(
struct
i2c_client
*
i2c
,
const
struct
i2c_device_id
*
id
)
static
int
__devinit
da7210_i2c_probe
(
struct
i2c_client
*
i2c
,
const
struct
i2c_device_id
*
id
)
{
struct
da7210_priv
*
da7210
;
struct
snd_soc_codec
*
codec
;
...
...
@@ -495,7 +495,7 @@ static int da7210_i2c_probe(struct i2c_client *i2c,
return
ret
;
}
static
int
da7210_i2c_remove
(
struct
i2c_client
*
client
)
static
int
__devexit
da7210_i2c_remove
(
struct
i2c_client
*
client
)
{
struct
da7210_priv
*
da7210
=
i2c_get_clientdata
(
client
);
...
...
sound/soc/codecs/tlv320dac33.c
浏览文件 @
735fe4cf
...
...
@@ -1191,8 +1191,8 @@ struct snd_soc_dai dac33_dai = {
};
EXPORT_SYMBOL_GPL
(
dac33_dai
);
static
int
dac33_i2c_probe
(
struct
i2c_client
*
client
,
const
struct
i2c_device_id
*
id
)
static
int
__devinit
dac33_i2c_probe
(
struct
i2c_client
*
client
,
const
struct
i2c_device_id
*
id
)
{
struct
tlv320dac33_platform_data
*
pdata
;
struct
tlv320dac33_priv
*
dac33
;
...
...
@@ -1345,7 +1345,7 @@ static int dac33_i2c_probe(struct i2c_client *client,
return
ret
;
}
static
int
dac33_i2c_remove
(
struct
i2c_client
*
client
)
static
int
__devexit
dac33_i2c_remove
(
struct
i2c_client
*
client
)
{
struct
tlv320dac33_priv
*
dac33
;
...
...
sound/soc/codecs/tpa6130a2.c
浏览文件 @
735fe4cf
...
...
@@ -379,8 +379,8 @@ int tpa6130a2_add_controls(struct snd_soc_codec *codec)
}
EXPORT_SYMBOL_GPL
(
tpa6130a2_add_controls
);
static
int
tpa6130a2_probe
(
struct
i2c_client
*
client
,
const
struct
i2c_device_id
*
id
)
static
int
__devinit
tpa6130a2_probe
(
struct
i2c_client
*
client
,
const
struct
i2c_device_id
*
id
)
{
struct
device
*
dev
;
struct
tpa6130a2_data
*
data
;
...
...
@@ -479,7 +479,7 @@ static int tpa6130a2_probe(struct i2c_client *client,
return
ret
;
}
static
int
tpa6130a2_remove
(
struct
i2c_client
*
client
)
static
int
__devexit
tpa6130a2_remove
(
struct
i2c_client
*
client
)
{
struct
tpa6130a2_data
*
data
=
i2c_get_clientdata
(
client
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录