Subject: [PATCH] hwmon: (oxp-sensors) Add new DMI match for OXP Mini

A newer BIOS version for the OneXPlayer Mini AMD modified vendor and
board name strings. Add those to the match table and set the same board
model as older OXP Mini AMD.

Signed-off-by: Joaquín Ignacio Aramendía <[email protected]>
---
drivers/hwmon/oxp-sensors.c | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/drivers/hwmon/oxp-sensors.c b/drivers/hwmon/oxp-sensors.c
index 7828c1d36695..b52bf8c4768a 100644
--- a/drivers/hwmon/oxp-sensors.c
+++ b/drivers/hwmon/oxp-sensors.c
@@ -99,6 +99,13 @@ static const struct dmi_system_id dmi_table[] = {
},
.driver_data = (void *)oxp_mini_amd,
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "ONEXPLAYER mini A07"),
+ },
+ .driver_data = (void *)oxp_mini_amd,
+ },
{
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
--
2.40.1



2023-05-19 12:51:15

by Guenter Roeck

[permalink] [raw]
Subject: Re: [PATCH] hwmon: (oxp-sensors) Add new DMI match for OXP Mini

On Wed, May 17, 2023 at 03:35:41PM -0300, Joaqu?n Ignacio Aramend?a wrote:
> A newer BIOS version for the OneXPlayer Mini AMD modified vendor and
> board name strings. Add those to the match table and set the same board
> model as older OXP Mini AMD.
>
> Signed-off-by: Joaqu?n Ignacio Aramend?a <[email protected]>

Applied.

Thanks,
Guenter