diff options
author | Azael Avalos <coproscefalo@gmail.com> | 2014-09-05 13:14:04 -0400 |
---|---|---|
committer | Darren Hart <dvhart@linux.intel.com> | 2014-09-17 16:55:51 -0400 |
commit | 12962878fbf9578b3d30ee4d8a5cd6632f26324c (patch) | |
tree | 65bd1dc914edaa774b2074d86bab9a97f1d908a4 | |
parent | 408a5d136b84f5fb43c9441153403d18255cb79c (diff) |
toshiba_acpi: Fix illumination not available on certain models
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>
-rw-r--r-- | drivers/platform/x86/toshiba_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c index bad9f12a6720..4c8fa7b72891 100644 --- a/drivers/platform/x86/toshiba_acpi.c +++ b/drivers/platform/x86/toshiba_acpi.c | |||
@@ -436,7 +436,7 @@ static int toshiba_illumination_available(struct toshiba_acpi_dev *dev) | |||
436 | if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) { | 436 | if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) { |
437 | pr_err("ACPI call to query Illumination support failed\n"); | 437 | pr_err("ACPI call to query Illumination support failed\n"); |
438 | return 0; | 438 | return 0; |
439 | } else if (out[0] == HCI_NOT_SUPPORTED || out[1] != 1) { | 439 | } else if (out[0] == HCI_NOT_SUPPORTED) { |
440 | pr_info("Illumination device not available\n"); | 440 | pr_info("Illumination device not available\n"); |
441 | return 0; | 441 | return 0; |
442 | } | 442 | } |