Skip to content

Commit 4fd5556

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: button: Add lid disable DMI quirk for Nextbook Ares 8A
The LID0 device on the Nextbook Ares 8A tablet always reports lid closed causing userspace to suspend the device as soon as booting is complete. Add a DMI quirk to disable the broken lid functionality. Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 69d6b37 commit 4fd5556

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/acpi/button.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,15 @@ static const struct dmi_system_id dmi_lid_quirks[] = {
7777
},
7878
.driver_data = (void *)(long)ACPI_BUTTON_LID_INIT_DISABLED,
7979
},
80+
{
81+
/* Nextbook Ares 8A tablet, _LID device always reports lid closed */
82+
.matches = {
83+
DMI_MATCH(DMI_SYS_VENDOR, "Insyde"),
84+
DMI_MATCH(DMI_PRODUCT_NAME, "CherryTrail"),
85+
DMI_MATCH(DMI_BIOS_VERSION, "M882"),
86+
},
87+
.driver_data = (void *)(long)ACPI_BUTTON_LID_INIT_DISABLED,
88+
},
8089
{
8190
/*
8291
* Lenovo Yoga 9 14ITL5, initial notification of the LID device

0 commit comments

Comments
 (0)