Commit 44ee250a authored by Samuel Čavoj's avatar Samuel Čavoj Committed by Dmitry Torokhov

Input: i8042 - enable deferred probe quirk for ASUS UM325UA

The ASUS UM325UA suffers from the same issue as the ASUS UX425UA, which
is a very similar laptop. The i8042 device is not usable immediately
after boot and fails to initialize, requiring a deferred retry.

Enable the deferred probe quirk for the UM325UA.

BugLink: https://bugzilla.suse.com/show_bug.cgi?id=1190256Signed-off-by: default avatarSamuel Čavoj <samuel@cavoj.net>
Link: https://lore.kernel.org/r/20211204015615.232948-1-samuel@cavoj.netSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 1d72d9f9
...@@ -1003,6 +1003,13 @@ static const struct dmi_system_id i8042_dmi_probe_defer_table[] __initconst = { ...@@ -1003,6 +1003,13 @@ static const struct dmi_system_id i8042_dmi_probe_defer_table[] __initconst = {
DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX425UA"), DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX425UA"),
}, },
}, },
{
/* ASUS ZenBook UM325UA */
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX325UA_UM325UA"),
},
},
{ } { }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment