Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
7816238a
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看板
提交
7816238a
编写于
4月 07, 2009
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sparc: Fix section mismatch warnings in cs4231 sound driver.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
9a2ed5cc
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
14 deletion
+14
-14
sound/sparc/cs4231.c
sound/sparc/cs4231.c
+14
-14
未找到文件。
sound/sparc/cs4231.c
浏览文件 @
7816238a
...
...
@@ -703,7 +703,7 @@ static int snd_cs4231_timer_stop(struct snd_timer *timer)
return
0
;
}
static
void
__init
snd_cs4231_init
(
struct
snd_cs4231
*
chip
)
static
void
__
dev
init
snd_cs4231_init
(
struct
snd_cs4231
*
chip
)
{
unsigned
long
flags
;
...
...
@@ -1020,7 +1020,7 @@ static snd_pcm_uframes_t snd_cs4231_capture_pointer(
return
bytes_to_frames
(
substream
->
runtime
,
ptr
);
}
static
int
__init
snd_cs4231_probe
(
struct
snd_cs4231
*
chip
)
static
int
__
dev
init
snd_cs4231_probe
(
struct
snd_cs4231
*
chip
)
{
unsigned
long
flags
;
int
i
;
...
...
@@ -1219,7 +1219,7 @@ static struct snd_pcm_ops snd_cs4231_capture_ops = {
.
pointer
=
snd_cs4231_capture_pointer
,
};
static
int
__init
snd_cs4231_pcm
(
struct
snd_card
*
card
)
static
int
__
dev
init
snd_cs4231_pcm
(
struct
snd_card
*
card
)
{
struct
snd_cs4231
*
chip
=
card
->
private_data
;
struct
snd_pcm
*
pcm
;
...
...
@@ -1248,7 +1248,7 @@ static int __init snd_cs4231_pcm(struct snd_card *card)
return
0
;
}
static
int
__init
snd_cs4231_timer
(
struct
snd_card
*
card
)
static
int
__
dev
init
snd_cs4231_timer
(
struct
snd_card
*
card
)
{
struct
snd_cs4231
*
chip
=
card
->
private_data
;
struct
snd_timer
*
timer
;
...
...
@@ -1499,7 +1499,7 @@ static int snd_cs4231_put_double(struct snd_kcontrol *kcontrol,
.private_value = (left_reg) | ((right_reg) << 8) | ((shift_left) << 16) | \
((shift_right) << 19) | ((mask) << 24) | ((invert) << 22) }
static
struct
snd_kcontrol_new
snd_cs4231_controls
[]
__initdata
=
{
static
struct
snd_kcontrol_new
snd_cs4231_controls
[]
__
dev
initdata
=
{
CS4231_DOUBLE
(
"PCM Playback Switch"
,
0
,
CS4231_LEFT_OUTPUT
,
CS4231_RIGHT_OUTPUT
,
7
,
7
,
1
,
1
),
CS4231_DOUBLE
(
"PCM Playback Volume"
,
0
,
CS4231_LEFT_OUTPUT
,
...
...
@@ -1538,7 +1538,7 @@ CS4231_SINGLE("Line Out Switch", 0, CS4231_PIN_CTRL, 6, 1, 1),
CS4231_SINGLE
(
"Headphone Out Switch"
,
0
,
CS4231_PIN_CTRL
,
7
,
1
,
1
)
};
static
int
__init
snd_cs4231_mixer
(
struct
snd_card
*
card
)
static
int
__
dev
init
snd_cs4231_mixer
(
struct
snd_card
*
card
)
{
struct
snd_cs4231
*
chip
=
card
->
private_data
;
int
err
,
idx
;
...
...
@@ -1559,7 +1559,7 @@ static int __init snd_cs4231_mixer(struct snd_card *card)
static
int
dev
;
static
int
__init
cs4231_attach_begin
(
struct
snd_card
**
rcard
)
static
int
__
dev
init
cs4231_attach_begin
(
struct
snd_card
**
rcard
)
{
struct
snd_card
*
card
;
struct
snd_cs4231
*
chip
;
...
...
@@ -1590,7 +1590,7 @@ static int __init cs4231_attach_begin(struct snd_card **rcard)
return
0
;
}
static
int
__init
cs4231_attach_finish
(
struct
snd_card
*
card
)
static
int
__
dev
init
cs4231_attach_finish
(
struct
snd_card
*
card
)
{
struct
snd_cs4231
*
chip
=
card
->
private_data
;
int
err
;
...
...
@@ -1794,9 +1794,9 @@ static struct snd_device_ops snd_cs4231_sbus_dev_ops = {
.
dev_free
=
snd_cs4231_sbus_dev_free
,
};
static
int
__init
snd_cs4231_sbus_create
(
struct
snd_card
*
card
,
struct
of_device
*
op
,
int
dev
)
static
int
__
dev
init
snd_cs4231_sbus_create
(
struct
snd_card
*
card
,
struct
of_device
*
op
,
int
dev
)
{
struct
snd_cs4231
*
chip
=
card
->
private_data
;
int
err
;
...
...
@@ -1960,9 +1960,9 @@ static struct snd_device_ops snd_cs4231_ebus_dev_ops = {
.
dev_free
=
snd_cs4231_ebus_dev_free
,
};
static
int
__init
snd_cs4231_ebus_create
(
struct
snd_card
*
card
,
struct
of_device
*
op
,
int
dev
)
static
int
__
dev
init
snd_cs4231_ebus_create
(
struct
snd_card
*
card
,
struct
of_device
*
op
,
int
dev
)
{
struct
snd_cs4231
*
chip
=
card
->
private_data
;
int
err
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录