Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
cdcb61a7
Commit
cdcb61a7
authored
Mar 14, 2016
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-linus' into for-next
parents
0ab1ace8
6ef2f68f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
sound/pci/hda/patch_conexant.c
sound/pci/hda/patch_conexant.c
+6
-1
sound/pci/hda/patch_hdmi.c
sound/pci/hda/patch_hdmi.c
+4
-0
sound/pci/hda/patch_realtek.c
sound/pci/hda/patch_realtek.c
+1
-0
No files found.
sound/pci/hda/patch_conexant.c
View file @
cdcb61a7
...
...
@@ -204,8 +204,13 @@ static void cx_auto_reboot_notify(struct hda_codec *codec)
{
struct
conexant_spec
*
spec
=
codec
->
spec
;
if
(
codec
->
core
.
vendor_id
!=
0x14f150f2
)
switch
(
codec
->
core
.
vendor_id
)
{
case
0x14f150f2
:
/* CX20722 */
case
0x14f150f4
:
/* CX20724 */
break
;
default:
return
;
}
/* Turn the CX20722 codec into D3 to avoid spurious noises
from the internal speaker during (and after) reboot */
...
...
sound/pci/hda/patch_hdmi.c
View file @
cdcb61a7
...
...
@@ -2208,6 +2208,10 @@ static void intel_pin_eld_notify(void *audio_ptr, int port)
struct
hda_codec
*
codec
=
audio_ptr
;
int
pin_nid
=
port
+
0x04
;
/* we assume only from port-B to port-D */
if
(
port
<
1
||
port
>
3
)
return
;
/* skip notification during system suspend (but not in runtime PM);
* the state will be updated at resume
*/
...
...
sound/pci/hda/patch_realtek.c
View file @
cdcb61a7
...
...
@@ -5556,6 +5556,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK
(
0x17aa
,
0x2226
,
"ThinkPad X250"
,
ALC292_FIXUP_TPT440_DOCK
),
SND_PCI_QUIRK
(
0x17aa
,
0x2233
,
"Thinkpad"
,
ALC293_FIXUP_LENOVO_SPK_NOISE
),
SND_PCI_QUIRK
(
0x17aa
,
0x30bb
,
"ThinkCentre AIO"
,
ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
),
SND_PCI_QUIRK
(
0x17aa
,
0x30e2
,
"ThinkCentre AIO"
,
ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
),
SND_PCI_QUIRK
(
0x17aa
,
0x3902
,
"Lenovo E50-80"
,
ALC269_FIXUP_DMIC_THINKPAD_ACPI
),
SND_PCI_QUIRK
(
0x17aa
,
0x3977
,
"IdeaPad S210"
,
ALC283_FIXUP_INT_MIC
),
SND_PCI_QUIRK
(
0x17aa
,
0x3978
,
"IdeaPad Y410P"
,
ALC269_FIXUP_NO_SHUTUP
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment