Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
619e666b
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看板
提交
619e666b
编写于
3月 23, 2005
作者:
G
gregkh@suse.de
提交者:
Greg Kroah-Hartman
6月 20, 2005
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PATCH] class: convert sound/* to use the new class api instead of class_simple
Signed-off-by:
N
Greg Kroah-Hartman
<
gregkh@suse.de
>
上级
8561b10f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
17 addition
and
18 deletion
+17
-18
sound/core/sound.c
sound/core/sound.c
+3
-3
sound/oss/soundcard.c
sound/oss/soundcard.c
+9
-10
sound/sound_core.c
sound/sound_core.c
+5
-5
未找到文件。
sound/core/sound.c
浏览文件 @
619e666b
...
...
@@ -64,7 +64,7 @@ static struct list_head snd_minors_hash[SNDRV_CARDS];
static
DECLARE_MUTEX
(
sound_mutex
);
extern
struct
class
_simple
*
sound_class
;
extern
struct
class
*
sound_class
;
#ifdef CONFIG_KMOD
...
...
@@ -231,7 +231,7 @@ int snd_register_device(int type, snd_card_t * card, int dev, snd_minor_t * reg,
devfs_mk_cdev
(
MKDEV
(
major
,
minor
),
S_IFCHR
|
device_mode
,
"snd/%s"
,
name
);
if
(
card
)
device
=
card
->
dev
;
class_
simple_device_add
(
sound_class
,
MKDEV
(
major
,
minor
),
device
,
name
);
class_
device_create
(
sound_class
,
MKDEV
(
major
,
minor
),
device
,
"%s"
,
name
);
up
(
&
sound_mutex
);
return
0
;
...
...
@@ -263,7 +263,7 @@ int snd_unregister_device(int type, snd_card_t * card, int dev)
if
(
strncmp
(
mptr
->
name
,
"controlC"
,
8
)
||
card
->
number
>=
cards_limit
)
/* created in sound.c */
devfs_remove
(
"snd/%s"
,
mptr
->
name
);
class_
simple_device_remove
(
MKDEV
(
major
,
minor
));
class_
device_destroy
(
sound_class
,
MKDEV
(
major
,
minor
));
list_del
(
&
mptr
->
list
);
up
(
&
sound_mutex
);
...
...
sound/oss/soundcard.c
浏览文件 @
619e666b
...
...
@@ -73,7 +73,7 @@ static char dma_alloc_map[MAX_DMA_CHANNELS];
unsigned
long
seq_time
=
0
;
/* Time for /dev/sequencer */
extern
struct
class
_simple
*
sound_class
;
extern
struct
class
*
sound_class
;
/*
* Table for configurable mixer volume handling
...
...
@@ -567,9 +567,9 @@ static int __init oss_init(void)
devfs_mk_cdev
(
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
),
S_IFCHR
|
dev_list
[
i
].
mode
,
"sound/%s"
,
dev_list
[
i
].
name
);
class_
simple_device_add
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
),
NULL
,
"%s"
,
dev_list
[
i
].
name
);
class_
device_create
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
),
NULL
,
"%s"
,
dev_list
[
i
].
name
);
if
(
!
dev_list
[
i
].
num
)
continue
;
...
...
@@ -579,10 +579,9 @@ static int __init oss_init(void)
dev_list
[
i
].
minor
+
(
j
*
0x10
)),
S_IFCHR
|
dev_list
[
i
].
mode
,
"sound/%s%d"
,
dev_list
[
i
].
name
,
j
);
class_simple_device_add
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
+
(
j
*
0x10
)),
NULL
,
"%s%d"
,
dev_list
[
i
].
name
,
j
);
class_device_create
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
+
(
j
*
0x10
)),
NULL
,
"%s%d"
,
dev_list
[
i
].
name
,
j
);
}
}
...
...
@@ -598,12 +597,12 @@ static void __exit oss_cleanup(void)
for
(
i
=
0
;
i
<
sizeof
(
dev_list
)
/
sizeof
*
dev_list
;
i
++
)
{
devfs_remove
(
"sound/%s"
,
dev_list
[
i
].
name
);
class_
simple_device_remove
(
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
));
class_
device_destroy
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
));
if
(
!
dev_list
[
i
].
num
)
continue
;
for
(
j
=
1
;
j
<
*
dev_list
[
i
].
num
;
j
++
)
{
devfs_remove
(
"sound/%s%d"
,
dev_list
[
i
].
name
,
j
);
class_
simple_device_remove
(
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
+
(
j
*
0x10
)));
class_
device_destroy
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
dev_list
[
i
].
minor
+
(
j
*
0x10
)));
}
}
...
...
sound/sound_core.c
浏览文件 @
619e666b
...
...
@@ -65,7 +65,7 @@ extern int msnd_classic_init(void);
extern
int
msnd_pinnacle_init
(
void
);
#endif
struct
class
_simple
*
sound_class
;
struct
class
*
sound_class
;
EXPORT_SYMBOL
(
sound_class
);
/*
...
...
@@ -174,7 +174,7 @@ static int sound_insert_unit(struct sound_unit **list, struct file_operations *f
devfs_mk_cdev
(
MKDEV
(
SOUND_MAJOR
,
s
->
unit_minor
),
S_IFCHR
|
mode
,
s
->
name
);
class_
simple_device_add
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
s
->
unit_minor
),
class_
device_create
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
s
->
unit_minor
),
NULL
,
s
->
name
+
6
);
return
r
;
...
...
@@ -198,7 +198,7 @@ static void sound_remove_unit(struct sound_unit **list, int unit)
spin_unlock
(
&
sound_loader_lock
);
if
(
p
)
{
devfs_remove
(
p
->
name
);
class_
simple_device_remove
(
MKDEV
(
SOUND_MAJOR
,
p
->
unit_minor
));
class_
device_destroy
(
sound_class
,
MKDEV
(
SOUND_MAJOR
,
p
->
unit_minor
));
kfree
(
p
);
}
}
...
...
@@ -562,7 +562,7 @@ static void __exit cleanup_soundcore(void)
empty */
unregister_chrdev
(
SOUND_MAJOR
,
"sound"
);
devfs_remove
(
"sound"
);
class_
simple_
destroy
(
sound_class
);
class_destroy
(
sound_class
);
}
static
int
__init
init_soundcore
(
void
)
...
...
@@ -572,7 +572,7 @@ static int __init init_soundcore(void)
return
-
EBUSY
;
}
devfs_mk_dir
(
"sound"
);
sound_class
=
class_
simple_
create
(
THIS_MODULE
,
"sound"
);
sound_class
=
class_create
(
THIS_MODULE
,
"sound"
);
if
(
IS_ERR
(
sound_class
))
return
PTR_ERR
(
sound_class
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录