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.

platform/x86: asus-nb-wmi: add DMI quirk for ASUS Zenbook Duo UX8406CA

Add a DMI quirk entry for the ASUS Zenbook Duo UX8406CA 2025 model to use
the existing zenbook duo keyboard quirk.

Signed-off-by: Rahul Chandra <rahul@chandra.net>
Link: https://lore.kernel.org/r/20250624073301.602070-1-rahul@chandra.net
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

authored by

Rahul Chandra and committed by
Ilpo Järvinen
7dc6b2d3 d0f8ee81

+9
+9
drivers/platform/x86/asus-nb-wmi.c
··· 530 530 }, 531 531 .driver_data = &quirk_asus_zenbook_duo_kbd, 532 532 }, 533 + { 534 + .callback = dmi_matched, 535 + .ident = "ASUS Zenbook Duo UX8406CA", 536 + .matches = { 537 + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), 538 + DMI_MATCH(DMI_PRODUCT_NAME, "UX8406CA"), 539 + }, 540 + .driver_data = &quirk_asus_zenbook_duo_kbd, 541 + }, 533 542 {}, 534 543 }; 535 544