Re: [PATCH] platform/x86: asus-nb-wmi: add UX7602ZM DMI quirk
From: Denis Benato
Date: Sun Feb 22 2026 - 17:27:01 EST
Hello and than you for this.
There a few things missing here:
- a commit description for the why this was required
- your signed-off-by tag
On 2/22/26 23:05, Paweł Hofman wrote:
> ---
> drivers/platform/x86/asus-nb-wmi.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/drivers/platform/x86/asus-nb-wmi.c b/drivers/platform/x86/asus-nb-wmi.c
> index a38a65f5c550..19cd7ea13fef 100644
> --- a/drivers/platform/x86/asus-nb-wmi.c
> +++ b/drivers/platform/x86/asus-nb-wmi.c
> @@ -553,6 +553,15 @@ static const struct dmi_system_id asus_quirks[] = {
> },
> .driver_data = &quirk_asus_z13,
> },
> + {
> + .callback = dmi_matched,
> + .ident = "ASUS Zenbook UX7602ZM",
> + .matches = {
> + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
> + DMI_MATCH(DMI_PRODUCT_NAME, "Zenbook UX7602ZM_UX7602ZM"),
> + },
> + .driver_data = &quirk_asus_zenbook_duo_kbd,
> + },
Please use tabs to align and ensure it is aligned with other entries.
Also keep all quirk_asus_zenbook_duo_kdb entries together please.
> {},
> };
>