aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_sigmatel.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2008-02-18 07:05:50 -0500
committerTakashi Iwai <tiwai@suse.de>2008-04-24 06:00:12 -0400
commit1c82ed1bc531746a8fa9b46c593ddce546f28026 (patch)
treebc86ba78100f31856cff9b596634d795d2793984 /sound/pci/hda/patch_sigmatel.c
parente922b0028fad87de0d262f9fa51f98595d2df258 (diff)
[ALSA] Keep private TLV entry in vmaster itself
Use a private array for TLV entries of virtual master controls instead of (supposed) static array. This cleans up the existing codes. Also, now vmaster assumes the simple dB-range TLV that is the only type it can handle. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_sigmatel.c')
-rw-r--r--sound/pci/hda/patch_sigmatel.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c
index 7901e76f269..132d1e3eafa 100644
--- a/sound/pci/hda/patch_sigmatel.c
+++ b/sound/pci/hda/patch_sigmatel.c
@@ -186,9 +186,6 @@ struct sigmatel_spec {
186 struct hda_input_mux private_dimux; 186 struct hda_input_mux private_dimux;
187 struct hda_input_mux private_imux; 187 struct hda_input_mux private_imux;
188 struct hda_input_mux private_mono_mux; 188 struct hda_input_mux private_mono_mux;
189
190 /* virtual master */
191 unsigned int vmaster_tlv[4];
192}; 189};
193 190
194static hda_nid_t stac9200_adc_nids[1] = { 191static hda_nid_t stac9200_adc_nids[1] = {
@@ -930,10 +927,11 @@ static int stac92xx_build_controls(struct hda_codec *codec)
930 927
931 /* if we have no master control, let's create it */ 928 /* if we have no master control, let's create it */
932 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { 929 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
930 unsigned int vmaster_tlv[4];
933 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0], 931 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
934 HDA_OUTPUT, spec->vmaster_tlv); 932 HDA_OUTPUT, vmaster_tlv);
935 err = snd_hda_add_vmaster(codec, "Master Playback Volume", 933 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
936 spec->vmaster_tlv, slave_vols); 934 vmaster_tlv, slave_vols);
937 if (err < 0) 935 if (err < 0)
938 return err; 936 return err;
939 } 937 }