From: Takashi Iwai Date: Thu, 5 Mar 2009 08:40:16 +0000 (+0100) Subject: ALSA: hda - Fix check of ALC888S-VC in alc888_coef_init() X-Git-Tag: v2.6.30-rc1~9^2~1^2~40 X-Git-Url: http://git.cascardo.info/?a=commitdiff_plain;h=37db623ae2a7bde234a8ed683d0d13d6f939199c;p=cascardo%2Flinux.git ALSA: hda - Fix check of ALC888S-VC in alc888_coef_init() Fixed the wrong bits check to identify ALC888S-VC model in alc888_coef_init(). Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 91ef9f27b120..6325ea43cf08 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -982,7 +982,7 @@ static void alc888_coef_init(struct hda_codec *codec) snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0); tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0); snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7); - if ((tmp & 0xf0) == 2) + if ((tmp & 0xf0) == 0x20) /* alc888S-VC */ snd_hda_codec_read(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0x830);