Skip to content

Commit cd08830

Browse files
antheasij-intel
authored andcommitted
platform/x86: oxpec: Add support for Aokzoe A2 Pro
Aokzoe A2 Pro is an older device that the oxpec driver is missing the quirk for. It has the same behavior as the AOKZOE A1 devices. Add a quirk for it to the oxpec driver. Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev> Link: https://patch.msgid.link/20260223183004.2696892-5-lkml@antheas.dev Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
1 parent 2a3b4a8 commit cd08830

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

drivers/platform/x86/oxpec.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,13 @@ static const struct dmi_system_id dmi_table[] = {
114114
},
115115
.driver_data = (void *)aok_zoe_a1,
116116
},
117+
{
118+
.matches = {
119+
DMI_MATCH(DMI_BOARD_VENDOR, "AOKZOE"),
120+
DMI_EXACT_MATCH(DMI_BOARD_NAME, "AOKZOE A2 Pro"),
121+
},
122+
.driver_data = (void *)aok_zoe_a1,
123+
},
117124
{
118125
.matches = {
119126
DMI_MATCH(DMI_BOARD_VENDOR, "AOKZOE"),

0 commit comments

Comments
 (0)