diff options
author | Matthew Garrett <mjg59@srcf.ucam.org> | 2005-12-06 07:59:12 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 06:30:29 -0500 |
commit | a0faefedf7d81b6ead6a33e5576a6439606d7ed5 (patch) | |
tree | eb940eeb51219da24673036423a3e80fe6a08a06 /sound/pci/atiixp.c | |
parent | e12229b4d2b7863b1baaeca759aa87703bf9fdf8 (diff) |
[ALSA] Add a new quirk for mute-LED and HP-only.
Modules: AC97 Codec,ATIIXP driver,Intel8x0 driver
This patch adds a new quirk for ac97 hardware that combines the existing
AC97_TUNE_MUTE_LED and AC97_TUNE_HP_ONLY quirks. This is needed for several
current HP laptops. Additionally, it adds the HP nx6125 to the
AC97_TUNE_MUTE_LED list.
Fixed for the latest version of ALSA by Takashi Iwai <tiwai@suse.de>.
Signed-off-by: Matthew Garrett <mjg59@srcf.ucam.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/atiixp.c')
-rw-r--r-- | sound/pci/atiixp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/pci/atiixp.c b/sound/pci/atiixp.c index 33e0664a1925..b7217adaf1d7 100644 --- a/sound/pci/atiixp.c +++ b/sound/pci/atiixp.c | |||
@@ -1353,6 +1353,12 @@ static struct ac97_quirk ac97_quirks[] __devinitdata = { | |||
1353 | .name = "HP Pavilion ZV5030US", | 1353 | .name = "HP Pavilion ZV5030US", |
1354 | .type = AC97_TUNE_MUTE_LED | 1354 | .type = AC97_TUNE_MUTE_LED |
1355 | }, | 1355 | }, |
1356 | { | ||
1357 | .subvendor = 0x103c, | ||
1358 | .subdevice = 0x308b, | ||
1359 | .name = "HP nx6125", | ||
1360 | .type = AC97_TUNE_MUTE_LED | ||
1361 | }, | ||
1356 | { } /* terminator */ | 1362 | { } /* terminator */ |
1357 | }; | 1363 | }; |
1358 | 1364 | ||