提交 2722b535 编写于 作者: T Takashi Iwai

ALSA: hda/realtek - Check beep whitelist before assigning in all codecs

Some Realtek codec parsers didn't check the availability of PC beep.
Add has_cdefine_beep() check appropriately.
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 7c0a6939
......@@ -2848,7 +2848,8 @@ static int patch_alc268(struct hda_codec *codec)
return err;
spec = codec->spec;
spec->gen.beep_nid = 0x01;
if (has_cdefine_beep(codec))
spec->gen.beep_nid = 0x01;
spec->shutup = alc_eapd_shutup;
......@@ -8102,7 +8103,8 @@ static int patch_alc861(struct hda_codec *codec)
return err;
spec = codec->spec;
spec->gen.beep_nid = 0x23;
if (has_cdefine_beep(codec))
spec->gen.beep_nid = 0x23;
#ifdef CONFIG_PM
spec->power_hook = alc_power_eapd;
......@@ -8203,7 +8205,8 @@ static int patch_alc861vd(struct hda_codec *codec)
return err;
spec = codec->spec;
spec->gen.beep_nid = 0x23;
if (has_cdefine_beep(codec))
spec->gen.beep_nid = 0x23;
spec->shutup = alc_eapd_shutup;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册