From: David Henningsson Date: Thu, 3 Jan 2013 13:12:29 +0000 (+0100) Subject: ALSA: hda - Switch "On" and "Off" for "Mute-LED Mode" kcontrol X-Git-Tag: v3.8-rc3~7^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c86c2d440c4faff9d0761bc5f34cc428a5ccf7d4;p=karo-tx-linux.git ALSA: hda - Switch "On" and "Off" for "Mute-LED Mode" kcontrol The vmaster hook sends 1 for enabled/unmuted and 0 for disabled/muted, but "Mute-LED Mode" being "On" refers to the LED being on, not the volume being on. Therefore "On" and "Off" should be switched. Signed-off-by: David Henningsson Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 8353c77536ac..b8fb0a5adb9b 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -2531,7 +2531,7 @@ static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) { static const char * const texts[] = { - "Off", "On", "Follow Master" + "On", "Off", "Follow Master" }; unsigned int index;