]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: hda - yet another fix for Dell headset mic with ALC3266
authorTakashi Iwai <tiwai@suse.de>
Wed, 5 Aug 2015 10:09:45 +0000 (12:09 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 5 Aug 2015 10:09:45 +0000 (12:09 +0200)
It turned out that there are three variants of pin config values of
NID 0x17 on Dell laptops with ALC3266 (alias of ALC298): 0x90170110,
0x90170140 and 0x90170150.  The first two have been already covered by
commits 703867e2f252 and 977e627684df, so this commit adds the missing
last entry.

While we're at it, rearrange the three entries in the order of pincfg
values.

Reported-by: Kailang Yang <kailang@realtek.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/patch_realtek.c

index 9107929dc54537dea0927098ab280b5221fcc2d8..88ddbb0668b7b3317863486643c9ec237f4ebb0c 100644 (file)
@@ -5572,12 +5572,15 @@ static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
        SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
                ALC292_STANDARD_PINS,
                {0x13, 0x90a60140}),
+       SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
+               ALC298_STANDARD_PINS,
+               {0x17, 0x90170110}),
        SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
                ALC298_STANDARD_PINS,
                {0x17, 0x90170140}),
        SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
                ALC298_STANDARD_PINS,
-               {0x17, 0x90170110}),
+               {0x17, 0x90170150}),
        {}
 };