提交 30d72e9f 编写于 作者: T Takashi Iwai

ALSA: hda - Fix creation of automatic capture mixers

Fixed a wrong boundary check of num_adc_nids in set_capture_mixer()
in patch_realtek.c.
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 529bd6c4
......@@ -4269,7 +4269,7 @@ static void set_capture_mixer(struct alc_spec *spec)
alc_capture_mixer2,
alc_capture_mixer3,
};
if (spec->num_adc_nids > 0 && spec->num_adc_nids < 3)
if (spec->num_adc_nids > 0 && spec->num_adc_nids <= 3)
spec->cap_mixer = caps[spec->num_adc_nids - 1];
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册