Skip to content

Commit f6e6e1b

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI / blacklist: Add dmi_enable_osi_linux quirk for Asus EEE PC 1015PX
Without this this EEE PC exports a non working WMI interface, with this it exports a working "good old" eeepc_laptop interface, fixing brightness control not working as well as rfkill being stuck in a permanent wireless blocked state. This is not an ideal way to fix this, but various attempts to fix this otherwise have failed, see: References: https://bugzilla.redhat.com/show_bug.cgi?id=1067181 Reported-and-tested-by: [email protected] Signed-off-by: Hans de Goede <[email protected]> Cc: All applicable <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent b753631 commit f6e6e1b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

drivers/acpi/blacklist.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,19 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = {
382382
DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T500"),
383383
},
384384
},
385+
/*
386+
* Without this this EEEpc exports a non working WMI interface, with
387+
* this it exports a working "good old" eeepc_laptop interface, fixing
388+
* both brightness control, and rfkill not working.
389+
*/
390+
{
391+
.callback = dmi_enable_osi_linux,
392+
.ident = "Asus EEE PC 1015PX",
393+
.matches = {
394+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."),
395+
DMI_MATCH(DMI_PRODUCT_NAME, "1015PX"),
396+
},
397+
},
385398
{}
386399
};
387400

0 commit comments

Comments
 (0)