Re: [PATCH v1 2/2] platform/x86: oxpec: Add OneXPlayer 3 quirk

From: Derek J. Clark

Date: Sun Sep 20 2026 - 18:29:15 EST


On September 20, 2026 12:04:38 PM PDT, Antheas Kapenekakis <lkml@xxxxxxxxxxx> wrote:
>The OneXPlayer 3 is a new Intel device by OneXPlayer. It uses the same
>registers as the G1 Intel edition. So, add a quirk for it. Battery
>bypass, capacity limits, fan curves, fan tachometer, and turbo button
>override were confirmed to work.
>
>Signed-off-by: Antheas Kapenekakis <lkml@xxxxxxxxxxx>
>---
> drivers/platform/x86/oxpec.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
>diff --git a/drivers/platform/x86/oxpec.c b/drivers/platform/x86/oxpec.c
>index 38c272995437..c4c4babe8e30 100644
>--- a/drivers/platform/x86/oxpec.c
>+++ b/drivers/platform/x86/oxpec.c
>@@ -223,6 +223,13 @@ static const struct dmi_system_id dmi_table[] = {
> },
> .driver_data = (void *)oxp_g1_i,
> },
>+ {
>+ .matches = {
>+ DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
>+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "ONEXPLAYER 3"),
>+ },
>+ .driver_data = (void *)oxp_g1_i,
>+ },
> {
> .matches = {
> DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),

Reviewed-by: Derek J. Clark <derekjohn.clark@xxxxxxxxx>