From: Azael Avalos Date: Fri, 5 Sep 2014 17:14:04 +0000 (-0600) Subject: toshiba_acpi: Fix illumination not available on certain models X-Git-Tag: v3.18-rc1~79^2~21 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=12962878fbf9578b3d30ee4d8a5cd6632f26324c;p=karo-tx-linux.git 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 --- 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; }