Commit a9393d70 authored by Takashi Iwai's avatar Takashi Iwai Committed by Jaroslav Kysela
Browse files

[ALSA] hda-codec - Fix mute switch on VAIO laptops with STAC7661



Fixed the master mute switch on VAIO laptops with STAC7661
codec chip.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 1dbfd8c5
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1262,13 +1262,13 @@ static int vaio_master_sw_put(struct snd_kcontrol *kcontrol,
	int change;

	change = snd_hda_codec_amp_update(codec, 0x02, 0, HDA_OUTPUT, 0,
					  0x80, valp[0] & 0x80);
					  0x80, (valp[0] ? 0 : 0x80));
	change |= snd_hda_codec_amp_update(codec, 0x02, 1, HDA_OUTPUT, 0,
					   0x80, valp[1] & 0x80);
					   0x80, (valp[1] ? 0 : 0x80));
	snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
				 0x80, valp[0] & 0x80);
				 0x80, (valp[0] ? 0 : 0x80));
	snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
				 0x80, valp[1] & 0x80);
				 0x80, (valp[1] ? 0 : 0x80));
	return change;
}