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
20d157ae
Commit
20d157ae
authored
May 06, 2010
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/hda' into topic/hda
parents
7b2bfdbc
8f0f5ff6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
13 deletions
+13
-13
sound/pci/hda/hda_intel.c
sound/pci/hda/hda_intel.c
+1
-0
sound/pci/hda/patch_analog.c
sound/pci/hda/patch_analog.c
+0
-9
sound/pci/hda/patch_cirrus.c
sound/pci/hda/patch_cirrus.c
+1
-1
sound/pci/hda/patch_conexant.c
sound/pci/hda/patch_conexant.c
+6
-2
sound/pci/hda/patch_realtek.c
sound/pci/hda/patch_realtek.c
+1
-1
sound/pci/hda/patch_sigmatel.c
sound/pci/hda/patch_sigmatel.c
+4
-0
No files found.
sound/pci/hda/hda_intel.c
View file @
20d157ae
...
@@ -2277,6 +2277,7 @@ static struct snd_pci_quirk position_fix_list[] __devinitdata = {
...
@@ -2277,6 +2277,7 @@ static struct snd_pci_quirk position_fix_list[] __devinitdata = {
SND_PCI_QUIRK
(
0x1462
,
0x1002
,
"MSI Wind U115"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1462
,
0x1002
,
"MSI Wind U115"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1565
,
0x820f
,
"Biostar Microtech"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1565
,
0x820f
,
"Biostar Microtech"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1565
,
0x8218
,
"Biostar Microtech"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x1565
,
0x8218
,
"Biostar Microtech"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x8086
,
0x2503
,
"DG965OT AAD63733-203"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x8086
,
0xd601
,
"eMachines T5212"
,
POS_FIX_LPIB
),
SND_PCI_QUIRK
(
0x8086
,
0xd601
,
"eMachines T5212"
,
POS_FIX_LPIB
),
{}
{}
};
};
...
...
sound/pci/hda/patch_analog.c
View file @
20d157ae
...
@@ -527,14 +527,6 @@ static int ad198x_suspend(struct hda_codec *codec, pm_message_t state)
...
@@ -527,14 +527,6 @@ static int ad198x_suspend(struct hda_codec *codec, pm_message_t state)
ad198x_power_eapd
(
codec
);
ad198x_power_eapd
(
codec
);
return
0
;
return
0
;
}
}
static
int
ad198x_resume
(
struct
hda_codec
*
codec
)
{
ad198x_init
(
codec
);
snd_hda_codec_resume_amp
(
codec
);
snd_hda_codec_resume_cache
(
codec
);
return
0
;
}
#endif
#endif
static
struct
hda_codec_ops
ad198x_patch_ops
=
{
static
struct
hda_codec_ops
ad198x_patch_ops
=
{
...
@@ -547,7 +539,6 @@ static struct hda_codec_ops ad198x_patch_ops = {
...
@@ -547,7 +539,6 @@ static struct hda_codec_ops ad198x_patch_ops = {
#endif
#endif
#ifdef SND_HDA_NEEDS_RESUME
#ifdef SND_HDA_NEEDS_RESUME
.
suspend
=
ad198x_suspend
,
.
suspend
=
ad198x_suspend
,
.
resume
=
ad198x_resume
,
#endif
#endif
.
reboot_notify
=
ad198x_shutup
,
.
reboot_notify
=
ad198x_shutup
,
};
};
...
...
sound/pci/hda/patch_cirrus.c
View file @
20d157ae
...
@@ -766,7 +766,7 @@ static int build_input(struct hda_codec *codec)
...
@@ -766,7 +766,7 @@ static int build_input(struct hda_codec *codec)
for
(
n
=
0
;
n
<
AUTO_PIN_LAST
;
n
++
)
{
for
(
n
=
0
;
n
<
AUTO_PIN_LAST
;
n
++
)
{
if
(
!
spec
->
adc_nid
[
n
])
if
(
!
spec
->
adc_nid
[
n
])
continue
;
continue
;
err
=
snd_hda_add_nid
(
codec
,
kctl
,
0
,
spec
->
adc_nid
[
i
]);
err
=
snd_hda_add_nid
(
codec
,
kctl
,
0
,
spec
->
adc_nid
[
n
]);
if
(
err
<
0
)
if
(
err
<
0
)
return
err
;
return
err
;
}
}
...
...
sound/pci/hda/patch_conexant.c
View file @
20d157ae
...
@@ -1196,9 +1196,10 @@ static int patch_cxt5045(struct hda_codec *codec)
...
@@ -1196,9 +1196,10 @@ static int patch_cxt5045(struct hda_codec *codec)
switch
(
codec
->
subsystem_id
>>
16
)
{
switch
(
codec
->
subsystem_id
>>
16
)
{
case
0x103c
:
case
0x103c
:
case
0x1631
:
case
0x1734
:
case
0x1734
:
/* HP
& Fujitsu-Siemens laptops have really bad sound over 0dB
/* HP
, Packard Bell, & Fujitsu-Siemens laptops have really bad
* on NID 0x17. Fix max PCM level to 0 dB
*
sound over 0dB
on NID 0x17. Fix max PCM level to 0 dB
* (originally it has 0x2b steps with 0dB offset 0x14)
* (originally it has 0x2b steps with 0dB offset 0x14)
*/
*/
snd_hda_override_amp_caps
(
codec
,
0x17
,
HDA_INPUT
,
snd_hda_override_amp_caps
(
codec
,
0x17
,
HDA_INPUT
,
...
@@ -2967,6 +2968,9 @@ static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
...
@@ -2967,6 +2968,9 @@ static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
CXT5066_DELL_LAPTOP
),
CXT5066_DELL_LAPTOP
),
SND_PCI_QUIRK
(
0x152d
,
0x0833
,
"OLPC XO-1.5"
,
CXT5066_OLPC_XO_1_5
),
SND_PCI_QUIRK
(
0x152d
,
0x0833
,
"OLPC XO-1.5"
,
CXT5066_OLPC_XO_1_5
),
SND_PCI_QUIRK
(
0x1028
,
0x0402
,
"Dell Vostro"
,
CXT5066_DELL_VOSTO
),
SND_PCI_QUIRK
(
0x1028
,
0x0402
,
"Dell Vostro"
,
CXT5066_DELL_VOSTO
),
SND_PCI_QUIRK
(
0x1028
,
0x0408
,
"Dell Inspiron One 19T"
,
CXT5066_IDEAPAD
),
SND_PCI_QUIRK
(
0x1179
,
0xff50
,
"Toshiba Satellite P500-PSPGSC-01800T"
,
CXT5066_OLPC_XO_1_5
),
SND_PCI_QUIRK
(
0x1179
,
0xffe0
,
"Toshiba Satellite Pro T130-15F"
,
CXT5066_OLPC_XO_1_5
),
SND_PCI_QUIRK
(
0x17aa
,
0x3a0d
,
"ideapad"
,
CXT5066_IDEAPAD
),
SND_PCI_QUIRK
(
0x17aa
,
0x3a0d
,
"ideapad"
,
CXT5066_IDEAPAD
),
SND_PCI_QUIRK
(
0x17aa
,
0x215e
,
"Lenovo Thinkpad"
,
CXT5066_THINKPAD
),
SND_PCI_QUIRK
(
0x17aa
,
0x215e
,
"Lenovo Thinkpad"
,
CXT5066_THINKPAD
),
{}
{}
...
...
sound/pci/hda/patch_realtek.c
View file @
20d157ae
...
@@ -4231,7 +4231,7 @@ static struct snd_pci_quirk alc880_cfg_tbl[] = {
...
@@ -4231,7 +4231,7 @@ static struct snd_pci_quirk alc880_cfg_tbl[] = {
SND_PCI_QUIRK
(
0x1695
,
0x4012
,
"EPox EP-5LDA"
,
ALC880_5ST_DIG
),
SND_PCI_QUIRK
(
0x1695
,
0x4012
,
"EPox EP-5LDA"
,
ALC880_5ST_DIG
),
SND_PCI_QUIRK
(
0x1734
,
0x107c
,
"FSC F1734"
,
ALC880_F1734
),
SND_PCI_QUIRK
(
0x1734
,
0x107c
,
"FSC F1734"
,
ALC880_F1734
),
SND_PCI_QUIRK
(
0x1734
,
0x1094
,
"FSC Amilo M1451G"
,
ALC880_FUJITSU
),
SND_PCI_QUIRK
(
0x1734
,
0x1094
,
"FSC Amilo M1451G"
,
ALC880_FUJITSU
),
SND_PCI_QUIRK
(
0x1734
,
0x10ac
,
"FSC
"
,
ALC880_UNIWILL
),
SND_PCI_QUIRK
(
0x1734
,
0x10ac
,
"FSC
AMILO Xi 1526"
,
ALC880_F1734
),
SND_PCI_QUIRK
(
0x1734
,
0x10b0
,
"Fujitsu"
,
ALC880_FUJITSU
),
SND_PCI_QUIRK
(
0x1734
,
0x10b0
,
"Fujitsu"
,
ALC880_FUJITSU
),
SND_PCI_QUIRK
(
0x1854
,
0x0018
,
"LG LW20"
,
ALC880_LG_LW
),
SND_PCI_QUIRK
(
0x1854
,
0x0018
,
"LG LW20"
,
ALC880_LG_LW
),
SND_PCI_QUIRK
(
0x1854
,
0x003b
,
"LG"
,
ALC880_LG
),
SND_PCI_QUIRK
(
0x1854
,
0x003b
,
"LG"
,
ALC880_LG
),
...
...
sound/pci/hda/patch_sigmatel.c
View file @
20d157ae
...
@@ -1607,6 +1607,10 @@ static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
...
@@ -1607,6 +1607,10 @@ static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
"Dell Studio 1555"
,
STAC_DELL_M6_DMIC
),
"Dell Studio 1555"
,
STAC_DELL_M6_DMIC
),
SND_PCI_QUIRK
(
PCI_VENDOR_ID_DELL
,
0x02bd
,
SND_PCI_QUIRK
(
PCI_VENDOR_ID_DELL
,
0x02bd
,
"Dell Studio 1557"
,
STAC_DELL_M6_DMIC
),
"Dell Studio 1557"
,
STAC_DELL_M6_DMIC
),
SND_PCI_QUIRK
(
PCI_VENDOR_ID_DELL
,
0x02fe
,
"Dell Studio XPS 1645"
,
STAC_DELL_M6_BOTH
),
SND_PCI_QUIRK
(
PCI_VENDOR_ID_DELL
,
0x0413
,
"Dell Studio 1558"
,
STAC_DELL_M6_BOTH
),
{}
/* terminator */
{}
/* terminator */
};
};
...
...
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