Commit 2626a263 authored by Takashi Iwai's avatar Takashi Iwai

[ALSA] hda-codec - Fix orphan Headphone controls in STAC codecs

Currently, the headphone controls are created as Master wrongly in
some cases, and this prevents the virtual master controls.
The patch fixes the problem by simply using "Headphone" always for
headphone controls.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent d654a660
...@@ -2509,12 +2509,8 @@ static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec, ...@@ -2509,12 +2509,8 @@ static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
return err; return err;
} }
if (spec->multiout.hp_nid) { if (spec->multiout.hp_nid) {
const char *pfx; err = create_controls(spec, "Headphone",
if (old_num_dacs == spec->multiout.num_dacs) spec->multiout.hp_nid, 3);
pfx = "Master";
else
pfx = "Headphone";
err = create_controls(spec, pfx, spec->multiout.hp_nid, 3);
if (err < 0) if (err < 0)
return err; return err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment