diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-11-11 16:46:19 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-11-11 16:46:19 +0100 |
commit | 355a0ec471377a8a907b79c8fba3f0f09b44656e (patch) | |
tree | 0ff94f4a134932d169504adebec13df491df4fb2 | |
parent | 254248313aed7e6ff295ca21a82ca989b1f69c16 (diff) | |
download | linux-stable-355a0ec471377a8a907b79c8fba3f0f09b44656e.tar.gz linux-stable-355a0ec471377a8a907b79c8fba3f0f09b44656e.tar.bz2 linux-stable-355a0ec471377a8a907b79c8fba3f0f09b44656e.zip |
ALSA: hda - Add missing analog-mux mixer creation for STAC9200
The creation of analog-mux mixer element is missing in
patch_stac9200() due to the dynamic allocation patch.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index e6085915d86d..1627756e5c7d 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -3530,6 +3530,12 @@ static int stac9200_parse_auto_config(struct hda_codec *codec) if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0) return err; + if (spec->num_muxes > 0) { + err = stac92xx_auto_create_mux_input_ctls(codec); + if (err < 0) + return err; + } + if (spec->autocfg.dig_out_pin) spec->multiout.dig_out_nid = 0x05; if (spec->autocfg.dig_in_pin) |