diff options
author | Corentin Chary <corentin.chary@gmail.com> | 2011-07-01 05:34:34 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-08-05 14:45:57 -0400 |
commit | af965e973276b015d1b7d9ee78ed8d8df9d6bc98 (patch) | |
tree | 003fc5dcee22107752d45dad370c76ff9c0b3faf | |
parent | 8fe8c25ef92ffc773a49c4b0dab2938a6fd64489 (diff) |
asus-wmi: fix keyboard backlight detection
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
-rw-r--r-- | drivers/platform/x86/asus-wmi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c index 41a96f2b136e..4b0384e140f8 100644 --- a/drivers/platform/x86/asus-wmi.c +++ b/drivers/platform/x86/asus-wmi.c | |||
@@ -395,8 +395,9 @@ static int kbd_led_read(struct asus_wmi *asus, int *level, int *env) | |||
395 | retval = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_KBD_BACKLIGHT, | 395 | retval = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_KBD_BACKLIGHT, |
396 | 0xFFFF); | 396 | 0xFFFF); |
397 | 397 | ||
398 | /* Unknown status is considered as off */ | ||
398 | if (retval == 0x8000) | 399 | if (retval == 0x8000) |
399 | retval = -ENODEV; | 400 | retval = 0; |
400 | 401 | ||
401 | if (retval >= 0) { | 402 | if (retval >= 0) { |
402 | if (level) | 403 | if (level) |