diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-03-05 09:40:16 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-03-05 09:40:16 +0100 |
commit | 37db623ae2a7bde234a8ed683d0d13d6f939199c (patch) | |
tree | 8981fbcc2a5300aafeb86441283d4ff9455e7c07 | |
parent | 7ec30f0e7768985ab2ef6334840e3fc8fa253421 (diff) | |
download | linux-37db623ae2a7bde234a8ed683d0d13d6f939199c.tar.gz linux-37db623ae2a7bde234a8ed683d0d13d6f939199c.tar.bz2 linux-37db623ae2a7bde234a8ed683d0d13d6f939199c.zip |
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 <tiwai@suse.de>
-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 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); |