aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/asus_acpi.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/acpi/asus_acpi.c b/drivers/acpi/asus_acpi.c
index 07b4c8b872cb..d1ff387a58d6 100644
--- a/drivers/acpi/asus_acpi.c
+++ b/drivers/acpi/asus_acpi.c
@@ -1198,9 +1198,10 @@ static int asus_hotk_get_info(void)
1198 else if (strncmp(string, "L5D", 3) == 0) 1198 else if (strncmp(string, "L5D", 3) == 0)
1199 hotk->methods->mt_wled = NULL; 1199 hotk->methods->mt_wled = NULL;
1200 /* L5D's WLED is not controlled by ACPI */ 1200 /* L5D's WLED is not controlled by ACPI */
1201 else if (strncmp(string, "M2N", 3) == 0) 1201 else if (strncmp(string, "M2N", 3) == 0 ||
1202 strncmp(string, "S1N", 3) == 0)
1202 hotk->methods->mt_wled = "WLED"; 1203 hotk->methods->mt_wled = "WLED";
1203 /* M2N has a usable WLED */ 1204 /* M2N and S1N have a usable WLED */
1204 else if (asus_info) { 1205 else if (asus_info) {
1205 if (strncmp(asus_info->oem_table_id, "L1", 2) == 0) 1206 if (strncmp(asus_info->oem_table_id, "L1", 2) == 0)
1206 hotk->methods->mled_status = NULL; 1207 hotk->methods->mled_status = NULL;