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
nexedi
linux
Commits
5e09416f
Commit
5e09416f
authored
Sep 21, 2010
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/hda' into topic/hda
parents
265a0247
0f9f1ee9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
sound/pci/hda/patch_analog.c
sound/pci/hda/patch_analog.c
+1
-0
sound/pci/hda/patch_realtek.c
sound/pci/hda/patch_realtek.c
+10
-0
No files found.
sound/pci/hda/patch_analog.c
View file @
5e09416f
...
...
@@ -3642,6 +3642,7 @@ static struct snd_pci_quirk ad1984_cfg_tbl[] = {
/* Lenovo Thinkpad T61/X61 */
SND_PCI_QUIRK_VENDOR
(
0x17aa
,
"Lenovo Thinkpad"
,
AD1984_THINKPAD
),
SND_PCI_QUIRK
(
0x1028
,
0x0214
,
"Dell T3400"
,
AD1984_DELL_DESKTOP
),
SND_PCI_QUIRK
(
0x1028
,
0x0233
,
"Dell Latitude E6400"
,
AD1984_DELL_DESKTOP
),
{}
};
...
...
sound/pci/hda/patch_realtek.c
View file @
5e09416f
...
...
@@ -14710,6 +14710,7 @@ static int alc269_resume(struct hda_codec *codec)
enum
{
ALC269_FIXUP_SONY_VAIO
,
ALC269_FIXUP_DELL_M101Z
,
};
static
const
struct
alc_fixup
alc269_fixups
[]
=
{
...
...
@@ -14719,11 +14720,20 @@ static const struct alc_fixup alc269_fixups[] = {
{}
}
},
[
ALC269_FIXUP_DELL_M101Z
]
=
{
.
verbs
=
(
const
struct
hda_verb
[])
{
/* Enables internal speaker */
{
0x20
,
AC_VERB_SET_COEF_INDEX
,
13
},
{
0x20
,
AC_VERB_SET_PROC_COEF
,
0x4040
},
{}
}
},
};
static
struct
snd_pci_quirk
alc269_fixup_tbl
[]
=
{
SND_PCI_QUIRK
(
0x104d
,
0x9071
,
"Sony VAIO"
,
ALC269_FIXUP_SONY_VAIO
),
SND_PCI_QUIRK
(
0x104d
,
0x9077
,
"Sony VAIO"
,
ALC269_FIXUP_SONY_VAIO
),
SND_PCI_QUIRK
(
0x1028
,
0x0470
,
"Dell M101z"
,
ALC269_FIXUP_DELL_M101Z
),
{}
};
...
...
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