From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754039AbaIERP7 (ORCPT ); Fri, 5 Sep 2014 13:15:59 -0400 Received: from mail-pa0-f49.google.com ([209.85.220.49]:63323 "EHLO mail-pa0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753404AbaIERO2 (ORCPT ); Fri, 5 Sep 2014 13:14:28 -0400 From: Azael Avalos To: Matthew Garrett , Darren Hart , platform-driver-x86@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Azael Avalos Subject: [PATCH 2/5] toshiba_acpi: Fix illumination not available on certain models Date: Fri, 5 Sep 2014 11:14:04 -0600 Message-Id: <1409937247-2525-3-git-send-email-coproscefalo@gmail.com> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1409937247-2525-1-git-send-email-coproscefalo@gmail.com> References: <1409937247-2525-1-git-send-email-coproscefalo@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 --- 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 a149bc6..4803e7b 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.0.0