Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
db9c6f84
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
db9c6f84
编写于
12月 20, 2011
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix/hda' into topic/hda
上级
a1585d76
645e9035
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
1 deletion
+9
-1
sound/pci/hda/hda_intel.c
sound/pci/hda/hda_intel.c
+3
-1
sound/pci/hda/patch_sigmatel.c
sound/pci/hda/patch_sigmatel.c
+6
-0
未找到文件。
sound/pci/hda/hda_intel.c
浏览文件 @
db9c6f84
...
@@ -2498,6 +2498,7 @@ static struct snd_pci_quirk position_fix_list[] __devinitdata = {
...
@@ -2498,6 +2498,7 @@ static struct snd_pci_quirk position_fix_list[] __devinitdata = {
SND_PCI_QUIRK
(
0x1043
,
0x813d
,
"ASUS P5AD2"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1043
,
0x813d
,
"ASUS P5AD2"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1043
,
0x81b3
,
"ASUS"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1043
,
0x81b3
,
"ASUS"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1043
,
0x81e7
,
"ASUS M2V"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1043
,
0x81e7
,
"ASUS M2V"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1043
,
0x83ce
,
"ASUS 1101HA"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x104d
,
0x9069
,
"Sony VPCS11V9E"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x104d
,
0x9069
,
"Sony VPCS11V9E"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1297
,
0x3166
,
"Shuttle"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1297
,
0x3166
,
"Shuttle"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1458
,
0xa022
,
"ga-ma770-ud3"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1458
,
0xa022
,
"ga-ma770-ud3"
,
POS_FIX_LPIB
),
...
@@ -2993,7 +2994,8 @@ static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
...
@@ -2993,7 +2994,8 @@ static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
/* SCH */
/* SCH */
{
PCI_DEVICE
(
0x8086
,
0x811b
),
{
PCI_DEVICE
(
0x8086
,
0x811b
),
.
driver_data
=
AZX_DRIVER_SCH
|
AZX_DCAPS_SCH_SNOOP
|
.
driver_data
=
AZX_DRIVER_SCH
|
AZX_DCAPS_SCH_SNOOP
|
AZX_DCAPS_BUFSIZE
},
AZX_DCAPS_BUFSIZE
|
AZX_DCAPS_POSFIX_LPIB
},
/* Poulsbo */
/* ICH */
{
PCI_DEVICE
(
0x8086
,
0x2668
),
{
PCI_DEVICE
(
0x8086
,
0x2668
),
.
driver_data
=
AZX_DRIVER_ICH
|
AZX_DCAPS_OLD_SSYNC
|
.
driver_data
=
AZX_DRIVER_ICH
|
AZX_DCAPS_OLD_SSYNC
|
AZX_DCAPS_BUFSIZE
},
/* ICH6 */
AZX_DCAPS_BUFSIZE
},
/* ICH6 */
...
...
sound/pci/hda/patch_sigmatel.c
浏览文件 @
db9c6f84
...
@@ -4925,6 +4925,12 @@ static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
...
@@ -4925,6 +4925,12 @@ static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
set_hp_led_gpio
(
codec
);
set_hp_led_gpio
(
codec
);
return
1
;
return
1
;
}
}
/* BIOS bug: unfilled OEM string */
if
(
strstr
(
dev
->
name
,
"HP_Mute_LED_P_G"
))
{
set_hp_led_gpio
(
codec
);
spec
->
gpio_led_polarity
=
1
;
return
1
;
}
}
}
/*
/*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录