Comment 52 for bug 76881

Revision history for this message
In , Mkubecek (mkubecek) wrote :

Sorry for the noise, when checking why the patch stopped applying yesteday,
I noticed only the part of commit ff946268a081 where the match was removed

> {
> - /* ASUS ZenBook UX425UA */
> .matches = {
> - DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
> - DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX425UA"),
> + DMI_MATCH(DMI_CHASSIS_TYPE, "10"), /* Notebook */
> },
> },

but I somehow managed to completely miss this part:

> {
> + /* ASUS ZenBook UX425UA */
> .matches = {
> DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
> - DMI_MATCH(DMI_PRODUCT_NAME, "X750LN"),
> + DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX425UA"),
> },
> + .driver_data = (void *)(SERIO_QUIRK_PROBE_DEFER | SERIO_QUIRK_RESET_NEVER)
> },

so I thought upstream switched to matching by a diffent key.