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

Commit af965e97 authored by Corentin Chary's avatar Corentin Chary Committed by Matthew Garrett
Browse files

asus-wmi: fix keyboard backlight detection

parent 8fe8c25e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -395,8 +395,9 @@ static int kbd_led_read(struct asus_wmi *asus, int *level, int *env)
	retval = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_KBD_BACKLIGHT,
					    0xFFFF);

	/* Unknown status is considered as off */
	if (retval == 0x8000)
		retval = -ENODEV;
		retval = 0;

	if (retval >= 0) {
		if (level)