Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
55d2b190
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 4 年多
通知
15
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
55d2b190
编写于
11月 29, 2016
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-linus' into for-next
上级
2e57069c
b5337cfe
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
9 addition
and
5 deletion
+9
-5
sound/pci/hda/hda_auto_parser.c
sound/pci/hda/hda_auto_parser.c
+1
-1
sound/pci/hda/patch_ca0132.c
sound/pci/hda/patch_ca0132.c
+1
-0
sound/pci/hda/patch_realtek.c
sound/pci/hda/patch_realtek.c
+3
-2
sound/pci/hda/thinkpad_helper.c
sound/pci/hda/thinkpad_helper.c
+2
-1
sound/usb/card.c
sound/usb/card.c
+2
-1
未找到文件。
sound/pci/hda/hda_auto_parser.c
浏览文件 @
55d2b190
...
...
@@ -901,7 +901,7 @@ static bool pin_config_match(struct hda_codec *codec,
for
(;
t_pins
->
nid
;
t_pins
++
)
{
if
(
t_pins
->
nid
==
nid
)
{
found
=
1
;
if
(
t_pins
->
val
==
cfg
)
if
(
(
t_pins
->
val
&
0xfffffff0
)
==
(
cfg
&
0xfffffff0
)
)
break
;
else
if
((
cfg
&
0xf0000000
)
==
0x40000000
&&
(
t_pins
->
val
&
0xf0000000
)
==
0x40000000
)
break
;
...
...
sound/pci/hda/patch_ca0132.c
浏览文件 @
55d2b190
...
...
@@ -780,6 +780,7 @@ static const struct hda_pintbl alienware_pincfgs[] = {
static
const
struct
snd_pci_quirk
ca0132_quirks
[]
=
{
SND_PCI_QUIRK
(
0x1028
,
0x0685
,
"Alienware 15 2015"
,
QUIRK_ALIENWARE
),
SND_PCI_QUIRK
(
0x1028
,
0x0688
,
"Alienware 17 2015"
,
QUIRK_ALIENWARE
),
SND_PCI_QUIRK
(
0x1028
,
0x0708
,
"Alienware 15 R2 2016"
,
QUIRK_ALIENWARE
),
{}
};
...
...
sound/pci/hda/patch_realtek.c
浏览文件 @
55d2b190
...
...
@@ -5917,6 +5917,9 @@ static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
{
0x12
,
0x90a60180
},
{
0x14
,
0x90170120
},
{
0x21
,
0x02211030
}),
SND_HDA_PIN_QUIRK
(
0x10ec0255
,
0x1028
,
"Dell"
,
ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
{
0x1b
,
0x01011020
},
{
0x21
,
0x02211010
}),
SND_HDA_PIN_QUIRK
(
0x10ec0256
,
0x1028
,
"Dell"
,
ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
{
0x12
,
0x90a60160
},
{
0x14
,
0x90170120
},
...
...
@@ -6907,8 +6910,6 @@ static const struct hda_fixup alc662_fixups[] = {
.
v
.
pins
=
(
const
struct
hda_pintbl
[])
{
{
0x15
,
0x40f000f0
},
/* disabled */
{
0x16
,
0x40f000f0
},
/* disabled */
{
0x18
,
0x01014011
},
/* LO */
{
0x1a
,
0x01014012
},
/* LO */
{
}
}
},
...
...
sound/pci/hda/thinkpad_helper.c
浏览文件 @
55d2b190
...
...
@@ -13,7 +13,8 @@ static void (*old_vmaster_hook)(void *, int);
static
bool
is_thinkpad
(
struct
hda_codec
*
codec
)
{
return
(
codec
->
core
.
subsystem_id
>>
16
==
0x17aa
)
&&
(
acpi_dev_found
(
"LEN0068"
)
||
acpi_dev_found
(
"IBM0068"
));
(
acpi_dev_found
(
"LEN0068"
)
||
acpi_dev_found
(
"LEN0268"
)
||
acpi_dev_found
(
"IBM0068"
));
}
static
void
update_tpacpi_mute_led
(
void
*
private_data
,
int
enabled
)
...
...
sound/usb/card.c
浏览文件 @
55d2b190
...
...
@@ -315,7 +315,8 @@ static int snd_usb_audio_free(struct snd_usb_audio *chip)
snd_usb_endpoint_free
(
ep
);
mutex_destroy
(
&
chip
->
mutex
);
dev_set_drvdata
(
&
chip
->
dev
->
dev
,
NULL
);
if
(
!
atomic_read
(
&
chip
->
shutdown
))
dev_set_drvdata
(
&
chip
->
dev
->
dev
,
NULL
);
kfree
(
chip
);
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录