From 12962878fbf9578b3d30ee4d8a5cd6632f26324c Mon Sep 17 00:00:00 2001 From: Azael Avalos Date: Fri, 5 Sep 2014 11:14:04 -0600 Subject: [PATCH] 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 Signed-off-by: Darren Hart --- drivers/platform/x86/toshiba_acpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) 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; } -- 2.39.5