aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_analog.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/hda/patch_analog.c')
-rw-r--r--sound/pci/hda/patch_analog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c
index 3f3905cc4e01..e0f3559f8b13 100644
--- a/sound/pci/hda/patch_analog.c
+++ b/sound/pci/hda/patch_analog.c
@@ -80,7 +80,6 @@ struct ad198x_spec {
80#endif 80#endif
81 /* for virtual master */ 81 /* for virtual master */
82 hda_nid_t vmaster_nid; 82 hda_nid_t vmaster_nid;
83 u32 vmaster_tlv[4];
84 const char **slave_vols; 83 const char **slave_vols;
85 const char **slave_sws; 84 const char **slave_sws;
86}; 85};
@@ -185,10 +184,11 @@ static int ad198x_build_controls(struct hda_codec *codec)
185 184
186 /* if we have no master control, let's create it */ 185 /* if we have no master control, let's create it */
187 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { 186 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
187 unsigned int vmaster_tlv[4];
188 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid, 188 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
189 HDA_OUTPUT, spec->vmaster_tlv); 189 HDA_OUTPUT, vmaster_tlv);
190 err = snd_hda_add_vmaster(codec, "Master Playback Volume", 190 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
191 spec->vmaster_tlv, 191 vmaster_tlv,
192 (spec->slave_vols ? 192 (spec->slave_vols ?
193 spec->slave_vols : ad_slave_vols)); 193 spec->slave_vols : ad_slave_vols));
194 if (err < 0) 194 if (err < 0)