Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: i8042 - add dritek quirk for Acer Aspire One AO532

Like on other Acer devices, the wifi, bluetooth and touchpad on/off toggle
hotkeys on the Acer AO532 do not send any events when the dritek extensions
are not enabled.

Add a quirk to enable the dritek extensions on this netbook model.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20220418200949.6009-1-hdegoede@redhat.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Hans de Goede and committed by
Dmitry Torokhov
94c8e866 42d3f278

+8
+8
drivers/input/serio/i8042-x86ia64io.h
··· 217 217 .driver_data = (void *)(SERIO_QUIRK_RESET_ALWAYS) 218 218 }, 219 219 { 220 + /* Acer Aspire One 532h */ 221 + .matches = { 222 + DMI_MATCH(DMI_SYS_VENDOR, "Acer"), 223 + DMI_MATCH(DMI_PRODUCT_NAME, "AO532h"), 224 + }, 225 + .driver_data = (void *)(SERIO_QUIRK_DRITEK) 226 + }, 227 + { 220 228 .matches = { 221 229 DMI_MATCH(DMI_SYS_VENDOR, "Acer"), 222 230 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire A114-31"),