diff options
author | Aleksander Mazur <deweloper@wp.pl> | 2022-06-05 01:21:14 +0200 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2022-07-13 17:38:19 +0200 |
commit | 739743ec78c9d70954845609093dc0ffb22f3ab8 (patch) | |
tree | 6ee7600086d52b6445b87f90e16187d711c9c9c4 /drivers/hwmon | |
parent | hwmon: (pmbus) Add support for Analog Devices LT7182S (diff) | |
download | linux-739743ec78c9d70954845609093dc0ffb22f3ab8.tar.xz linux-739743ec78c9d70954845609093dc0ffb22f3ab8.zip |
hwmon: (f71882fg) Add support for F71858AD (0x0903)
Treat F71858AD like F71858FG.
Tested on Igel D220.
Signed-off-by: Aleksander Mazur <deweloper@wp.pl>
Link: https://lore.kernel.org/r/20220605012114.3d85a75a@mocarz
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/f71882fg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hwmon/f71882fg.c b/drivers/hwmon/f71882fg.c index 6830e029995d..19b6c643059a 100644 --- a/drivers/hwmon/f71882fg.c +++ b/drivers/hwmon/f71882fg.c @@ -49,6 +49,7 @@ #define SIO_F81768D_ID 0x1210 /* Chipset ID */ #define SIO_F81865_ID 0x0704 /* Chipset ID */ #define SIO_F81866_ID 0x1010 /* Chipset ID */ +#define SIO_F71858AD_ID 0x0903 /* Chipset ID */ #define SIO_F81966_ID 0x1502 /* Chipset ID */ #define REGION_LENGTH 8 @@ -2638,6 +2639,7 @@ static int __init f71882fg_find(int sioaddr, struct f71882fg_sio_data *sio_data) sio_data->type = f71808a; break; case SIO_F71858_ID: + case SIO_F71858AD_ID: sio_data->type = f71858fg; break; case SIO_F71862_ID: |