]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
toshiba_acpi: Fix illumination not available on certain models
authorAzael Avalos <coproscefalo@gmail.com>
Fri, 5 Sep 2014 17:14:04 +0000 (11:14 -0600)
committerDarren Hart <dvhart@linux.intel.com>
Wed, 17 Sep 2014 20:55:51 +0000 (13:55 -0700)
Some Toshiba models with illumination support set a different
value on the returned codes, thus not allowing the illumination
LED to be registered, where it should be.

This patch removes a check from toshiba_illumination_available
function to allow such models to register the illumination LED.

Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
drivers/platform/x86/toshiba_acpi.c

index bad9f12a67208416b9ebbd5aa9603e26a6c25c76..4c8fa7b72891a67f97aa1462096a09791b5e1d0b 100644 (file)
@@ -436,7 +436,7 @@ static int toshiba_illumination_available(struct toshiba_acpi_dev *dev)
        if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) {
                pr_err("ACPI call to query Illumination support failed\n");
                return 0;
-       } else if (out[0] == HCI_NOT_SUPPORTED || out[1] != 1) {
+       } else if (out[0] == HCI_NOT_SUPPORTED) {
                pr_info("Illumination device not available\n");
                return 0;
        }