mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
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>
This commit is contained in:
parent
7ec30f0e77
commit
37db623ae2
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user