From 560eea85cea195a0d06181e7fae28565e3327d82 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Mon, 2 Sep 2013 12:15:19 +0200 Subject: [PATCH] acpi-handle-hack: add Acer V5-573G \_SB.PCI0.RP05.PXSX should become \_SB.PCI0.RP05.PEGP, see https://github.com/Bumblebee-Project/Bumblebee/issues/460 --- acpi-handle-hack.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/acpi-handle-hack.c b/acpi-handle-hack.c index 99323f9..d573049 100644 --- a/acpi-handle-hack.c +++ b/acpi-handle-hack.c @@ -1,6 +1,7 @@ /** * Very ugly hack to work around a wrongly detected ACPI handle, see * https://bugzilla.kernel.org/show_bug.cgi?id=42696 + * https://bugzilla.kernel.org/show_bug.cgi?id=60829 */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt @@ -35,6 +36,7 @@ static bool __init need_acpi_handle_hack(void) { || dmi_match(DMI_PRODUCT_VERSION, "Lenovo G780") || dmi_match(DMI_PRODUCT_VERSION, "Lenovo IdeaPad Z500") || (dmi_match(DMI_SYS_VENDOR, "LENOVO") && dmi_match(DMI_PRODUCT_NAME, "PIQY0")) /* Lenovo IdeaPad Y570 */ + || dmi_match(DMI_PRODUCT_NAME, "Aspire V5-573G") ; }