Skip to content

Commit 3385ea9

Browse files
antheasij-intel
authored andcommitted
platform/x86: oxpec: Add support for OneXPlayer APEX
OneXPlayer Apex is a new Strix Halo handheld. It uses the same registers as the OneXPlayer Fly 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-2-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 9836fee commit 3385ea9

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

drivers/platform/x86/oxpec.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
* Copyright (C) 2022 Joaquín I. Aramendía <samsagax@gmail.com>
1313
* Copyright (C) 2024 Derek J. Clark <derekjohn.clark@gmail.com>
14-
* Copyright (C) 2025 Antheas Kapenekakis <lkml@antheas.dev>
14+
* Copyright (C) 2025-2026 Antheas Kapenekakis <lkml@antheas.dev>
1515
*/
1616

1717
#include <linux/acpi.h>
@@ -142,6 +142,13 @@ static const struct dmi_system_id dmi_table[] = {
142142
},
143143
.driver_data = (void *)oxp_2,
144144
},
145+
{
146+
.matches = {
147+
DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
148+
DMI_EXACT_MATCH(DMI_BOARD_NAME, "ONEXPLAYER APEX"),
149+
},
150+
.driver_data = (void *)oxp_fly,
151+
},
145152
{
146153
.matches = {
147154
DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),

0 commit comments

Comments
 (0)