aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorDavid Henningsson <david.henningsson@canonical.com>2010-10-14 09:42:08 -0400
committerTakashi Iwai <tiwai@suse.de>2010-10-17 04:22:39 -0400
commitc3d226ab8b44fe31e5e6d5739eb353597cea4029 (patch)
tree9a92dffb823a1d0317b92a15f62ea37641953b21 /sound/pci
parent906229174c20e3d5cbda8da070af8f30196316c3 (diff)
ALSA: HDA: Apply SKU override for Acer aspire 7736z
BugLink: http://launchpad.net/bugs/617647 The current SKU value disables playback, so ignore the SKU value. Signed-off-by: David Henningsson <david.henningsson@canonical.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/patch_realtek.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 7b24a2d72936..788ac4bbbba9 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -10628,6 +10628,7 @@ static struct alc_config_preset alc882_presets[] = {
10628enum { 10628enum {
10629 PINFIX_ABIT_AW9D_MAX, 10629 PINFIX_ABIT_AW9D_MAX,
10630 PINFIX_PB_M5210, 10630 PINFIX_PB_M5210,
10631 PINFIX_ACER_ASPIRE_7736,
10631}; 10632};
10632 10633
10633static const struct alc_fixup alc882_fixups[] = { 10634static const struct alc_fixup alc882_fixups[] = {
@@ -10645,11 +10646,15 @@ static const struct alc_fixup alc882_fixups[] = {
10645 {} 10646 {}
10646 } 10647 }
10647 }, 10648 },
10649 [PINFIX_ACER_ASPIRE_7736] = {
10650 .sku = ALC_FIXUP_SKU_IGNORE,
10651 },
10648}; 10652};
10649 10653
10650static struct snd_pci_quirk alc882_fixup_tbl[] = { 10654static struct snd_pci_quirk alc882_fixup_tbl[] = {
10651 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210), 10655 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210),
10652 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX), 10656 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
10657 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736),
10653 {} 10658 {}
10654}; 10659};
10655 10660