diff options
author | Hui Wang <hui.wang@canonical.com> | 2014-06-13 09:23:10 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-06-13 10:48:55 +0200 |
commit | 64eb428078b7b9b40c2d9413a7332fa3af85c51d (patch) | |
tree | f5ad5bf72e2094e46b996bee3c8df2255b43b606 /sound | |
parent | 2afe8be85c2c79fc574c0d322ab60921d5deed43 (diff) | |
download | linux-exynos-64eb428078b7b9b40c2d9413a7332fa3af85c51d.tar.gz linux-exynos-64eb428078b7b9b40c2d9413a7332fa3af85c51d.tar.bz2 linux-exynos-64eb428078b7b9b40c2d9413a7332fa3af85c51d.zip |
ALSA: hda - fix a fixup value for codec alc293 in the pin_quirk table
The fixup value for codec alc293 was set to
ALC269_FIXUP_DELL1_MIC_NO_PRESENCE by a mistake, if we don't fix it,
the Dock mic will be overwriten by the headset mic, this will make
the Dock mic can't work.
Cc: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Hui Wang <hui.wang@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 9c095faac970..06d606399abb 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -5159,7 +5159,7 @@ static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = { {0x1d, 0x40700001}, {0x1e, 0x411111f0}, }, - .value = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, + .value = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, }, {} }; |