Without this patch, eeepc-laptop won't work on newer Eeepc because the interface it uses is disabled. Signed-off-by: Corentin Chary <corentincj@xxxxxxxxxx> --- drivers/acpi/blacklist.c | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c index e56b2a7..cd7015d 100644 --- a/drivers/acpi/blacklist.c +++ b/drivers/acpi/blacklist.c @@ -218,6 +218,27 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { */ /* + * On newer Eeepc, the interface used by eeepc-laptop (ASUS010) + * is disabled without _OSI(Linux) + */ + { + .callback = dmi_enable_osi_linux, + .ident = "Asus Eeepc-1000H", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "1000H"), + }, + }, + { + .callback = dmi_enable_osi_linux, + .ident = "Asus Eeepc-1005HA", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "1005HA"), + }, + }, + + /* * Lenovo has a mix of systems OSI(Linux) situations * and thus we can not wildcard the vendor. * -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html