Re: [PATCH] platform/x86: oxpec: Add support for OneXPlayer X2 Mini Pro

Antheas Kapenekakis <[email protected]> Wed, 5 Aug 2026 20:41:49 +0200
Newsgroups org.kernel.vger.platform-driver-x86,org.kernel.vger.linux-kernel
Message-ID <CAGwozwFLUYNr0YFpvSytX7m0fcOyUuxBjeUnrJzM9pAMdQ2BJg@mail.gmail.com>
On Wed, 5 Aug 2026 at 20:31, Jeff Hagadorn <[email protected]> wrote:
>
> OneXPlayer X2 Mini Pro is a new Strix Halo handheld. It ships the same
> system board as the OneXPlayer APEX and uses the same registers as the
> OneXPlayer Fly devices. Add a quirk for it to the oxpec driver.
>

Reviewed-by: Antheas Kapenekakis <[email protected]>
> Signed-off-by: Jeff Hagadorn <[email protected]>
> ---
>  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 99c0dfc..34bb17f 100644
> --- a/drivers/platform/x86/oxpec.c
> +++ b/drivers/platform/x86/oxpec.c
> @@ -289,6 +289,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 X2Mini PRO"),
> +               },
> +               .driver_data = (void *)oxp_fly,
> +       },
>         {},
>  };
>
> --
> 2.55.0
>
> base-commit: aca39607c1734ed976fdd65deb75b3555a5a0326
>