mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:04:51 +01:00
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>
This commit is contained in:
parent
9836feedcf
commit
3385ea97c1
1 changed files with 8 additions and 1 deletions
|
|
@ -11,7 +11,7 @@
|
|||
*
|
||||
* Copyright (C) 2022 Joaquín I. Aramendía <samsagax@gmail.com>
|
||||
* Copyright (C) 2024 Derek J. Clark <derekjohn.clark@gmail.com>
|
||||
* Copyright (C) 2025 Antheas Kapenekakis <lkml@antheas.dev>
|
||||
* Copyright (C) 2025-2026 Antheas Kapenekakis <lkml@antheas.dev>
|
||||
*/
|
||||
|
||||
#include <linux/acpi.h>
|
||||
|
|
@ -142,6 +142,13 @@ static const struct dmi_system_id dmi_table[] = {
|
|||
},
|
||||
.driver_data = (void *)oxp_2,
|
||||
},
|
||||
{
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
|
||||
DMI_EXACT_MATCH(DMI_BOARD_NAME, "ONEXPLAYER APEX"),
|
||||
},
|
||||
.driver_data = (void *)oxp_fly,
|
||||
},
|
||||
{
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue