Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 96d11420 authored by Karol Kozimor's avatar Karol Kozimor Committed by Len Brown
Browse files

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: default avatarKarol Kozimor <sziwan@hell.org.pl>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent ffab0d95
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1198,9 +1198,10 @@ static int asus_hotk_get_info(void)
	else if (strncmp(string, "L5D", 3) == 0)
		hotk->methods->mt_wled = NULL;
	/* L5D's WLED is not controlled by ACPI */
	else if (strncmp(string, "M2N", 3) == 0)
	else if (strncmp(string, "M2N", 3) == 0 ||
		 strncmp(string, "S1N", 3) == 0)
		hotk->methods->mt_wled = "WLED";
	/* M2N has a usable WLED */
	/* M2N and S1N have a usable WLED */
	else if (asus_info) {
		if (strncmp(asus_info->oem_table_id, "L1", 2) == 0)
			hotk->methods->mled_status = NULL;