Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1974f96 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda - Fix inverted LED gpio setup for Lenovo Ideapad

We implemented in a wrong way for mute LED on Lenovo Ideapad; the bit
must be flipped.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=16373


Fixes: 3e887f37 ('ALSA: hda - Add mute LED support to Lenovo Ideapad')
Cc: <stable@vger.kernel.org> # 3.15+
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 6acce400
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5613,9 +5613,9 @@ static void alc662_led_gpio1_mute_hook(void *private_data, int enabled)
	unsigned int oldval = spec->gpio_led;

	if (enabled)
		spec->gpio_led &= ~0x01;
	else
		spec->gpio_led |= 0x01;
	else
		spec->gpio_led &= ~0x01;
	if (spec->gpio_led != oldval)
		snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
				    spec->gpio_led);