summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntheas Kapenekakis <lkml@antheas.dev>2025-09-04 15:22:51 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-10-12 13:01:01 +0200
commitc5c7e0543accfefb5e8cc6c693cf6cc9e699ba4a (patch)
treee287746a8ef4fb4ea3b23241e51061806a252d0e
parent3bc5c05a9c58f0a86b88f3a7d08948b13c720c04 (diff)
downloadlinux-c5c7e0543accfefb5e8cc6c693cf6cc9e699ba4a.tar.gz
linux-c5c7e0543accfefb5e8cc6c693cf6cc9e699ba4a.zip
platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02
[ Upstream commit fba9d5448bd45b0ff7199c47023e9308ea4f1730 ] It is a special edition of X1Pro with a different color. Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev> Link: https://patch.msgid.link/20250904132252.3041613-1-lkml@antheas.dev Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--drivers/platform/x86/oxpec.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/platform/x86/oxpec.c b/drivers/platform/x86/oxpec.c
index eb076bb4099b..4f540a9932fe 100644
--- a/drivers/platform/x86/oxpec.c
+++ b/drivers/platform/x86/oxpec.c
@@ -306,6 +306,13 @@ static const struct dmi_system_id dmi_table[] = {
},
.driver_data = (void *)oxp_x1,
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "ONEXPLAYER X1Pro EVA-02"),
+ },
+ .driver_data = (void *)oxp_x1,
+ },
{},
};