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 quirk for ASUS Zenbook UX425QA_UM425QA

The ASUS Zenbook UX425QA_UM425QA fails to initialize the keyboard after
a cold boot.

A quirk already exists for "ZenBook UX425", but some Zenbooks report
"Zenbook" with a lowercase 'b'. Since DMI matching is case-sensitive,
the existing quirk is not applied to these "extra special" Zenbooks.

Testing confirms that this model needs the same quirks as the ZenBook
UX425 variants.

Signed-off-by: feng <alec.jiang@gmail.com>
Link: https://patch.msgid.link/20260122013957.11184-1-alec.jiang@gmail.com
Cc: stable@vger.kernel.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

feng and committed by
Dmitry Torokhov
2934325f 248d3a73

+11
+11
drivers/input/serio/i8042-acpipnpio.h
··· 116 116 .driver_data = (void *)(SERIO_QUIRK_NOMUX | SERIO_QUIRK_RESET_NEVER) 117 117 }, 118 118 { 119 + /* 120 + * ASUS Zenbook UX425QA_UM425QA 121 + * Some Zenbooks report "Zenbook" with a lowercase b. 122 + */ 123 + .matches = { 124 + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), 125 + DMI_MATCH(DMI_PRODUCT_NAME, "Zenbook UX425QA_UM425QA"), 126 + }, 127 + .driver_data = (void *)(SERIO_QUIRK_PROBE_DEFER | SERIO_QUIRK_RESET_NEVER) 128 + }, 129 + { 119 130 /* ASUS ZenBook UX425UA/QA */ 120 131 .matches = { 121 132 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),