Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
b2573eb5
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
b2573eb5
编写于
2月 06, 2009
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix/hda' into for-linus
上级
9be260a6
4a5a4c56
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
10 addition
and
4 deletion
+10
-4
sound/pci/hda/hda_codec.c
sound/pci/hda/hda_codec.c
+5
-4
sound/pci/hda/hda_codec.h
sound/pci/hda/hda_codec.h
+1
-0
sound/pci/hda/patch_realtek.c
sound/pci/hda/patch_realtek.c
+4
-0
未找到文件。
sound/pci/hda/hda_codec.c
浏览文件 @
b2573eb5
...
...
@@ -487,7 +487,6 @@ int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
{
struct
hda_bus
*
bus
;
int
err
;
char
qname
[
8
];
static
struct
snd_device_ops
dev_ops
=
{
.
dev_register
=
snd_hda_bus_dev_register
,
.
dev_free
=
snd_hda_bus_dev_free
,
...
...
@@ -517,10 +516,12 @@ int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
mutex_init
(
&
bus
->
cmd_mutex
);
INIT_LIST_HEAD
(
&
bus
->
codec_list
);
snprintf
(
qname
,
sizeof
(
qname
),
"hda%d"
,
card
->
number
);
bus
->
workq
=
create_workqueue
(
qname
);
snprintf
(
bus
->
workq_name
,
sizeof
(
bus
->
workq_name
),
"hd-audio%d"
,
card
->
number
);
bus
->
workq
=
create_singlethread_workqueue
(
bus
->
workq_name
);
if
(
!
bus
->
workq
)
{
snd_printk
(
KERN_ERR
"cannot create workqueue %s
\n
"
,
qname
);
snd_printk
(
KERN_ERR
"cannot create workqueue %s
\n
"
,
bus
->
workq_name
);
kfree
(
bus
);
return
-
ENOMEM
;
}
...
...
sound/pci/hda/hda_codec.h
浏览文件 @
b2573eb5
...
...
@@ -614,6 +614,7 @@ struct hda_bus {
/* unsolicited event queue */
struct
hda_bus_unsolicited
*
unsol
;
char
workq_name
[
16
];
struct
workqueue_struct
*
workq
;
/* common workqueue for codecs */
/* assigned PCMs */
...
...
sound/pci/hda/patch_realtek.c
浏览文件 @
b2573eb5
...
...
@@ -1037,6 +1037,7 @@ static void alc_subsystem_id(struct hda_codec *codec,
case 0x10ec0267:
case 0x10ec0268:
case 0x10ec0269:
case 0x10ec0272:
case 0x10ec0660:
case 0x10ec0662:
case 0x10ec0663:
...
...
@@ -1065,6 +1066,7 @@ static void alc_subsystem_id(struct hda_codec *codec,
case 0x10ec0882:
case 0x10ec0883:
case 0x10ec0885:
case 0x10ec0887:
case 0x10ec0889:
snd_hda_codec_write(codec, 0x20, 0,
AC_VERB_SET_COEF_INDEX, 7);
...
...
@@ -8515,6 +8517,8 @@ static struct snd_pci_quirk alc883_cfg_tbl[] = {
SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch),
SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
SND_PCI_QUIRK(0x1734, 0x1107, "FSC AMILO Xi2550",
ALC883_FUJITSU_PI2515),
SND_PCI_QUIRK(0x1734, 0x1108, "Fujitsu AMILO Pi2515", ALC883_FUJITSU_PI2515),
SND_PCI_QUIRK(0x1734, 0x113d, "Fujitsu AMILO Xa3530",
ALC888_FUJITSU_XA3530),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录