ACPI: asus_acpi: add S1N WLED control

This small patch adds back WLED control for S1N models, this was
accidentally removed a while ago.

Signed-off-by: Karol Kozimor <sziwan@hell.org.pl>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by Karol Kozimor and committed by Len Brown 96d11420 ffab0d95

+3 -2
+3 -2
drivers/acpi/asus_acpi.c
··· 1198 else if (strncmp(string, "L5D", 3) == 0) 1199 hotk->methods->mt_wled = NULL; 1200 /* L5D's WLED is not controlled by ACPI */ 1201 - else if (strncmp(string, "M2N", 3) == 0) 1202 hotk->methods->mt_wled = "WLED"; 1203 - /* M2N has a usable WLED */ 1204 else if (asus_info) { 1205 if (strncmp(asus_info->oem_table_id, "L1", 2) == 0) 1206 hotk->methods->mled_status = NULL;
··· 1198 else if (strncmp(string, "L5D", 3) == 0) 1199 hotk->methods->mt_wled = NULL; 1200 /* L5D's WLED is not controlled by ACPI */ 1201 + else if (strncmp(string, "M2N", 3) == 0 || 1202 + strncmp(string, "S1N", 3) == 0) 1203 hotk->methods->mt_wled = "WLED"; 1204 + /* M2N and S1N have a usable WLED */ 1205 else if (asus_info) { 1206 if (strncmp(asus_info->oem_table_id, "L1", 2) == 0) 1207 hotk->methods->mled_status = NULL;