diff options
| author | John Audia <therealgraysky@proton.me> | 2025-01-01 08:27:59 -0500 |
|---|---|---|
| committer | Guenter Roeck <linux@roeck-us.net> | 2025-01-06 19:21:31 -0800 |
| commit | a045a189f425e073ea5d6427ee66252eb990ed92 (patch) | |
| tree | 07dbc8f7d995665c6b9223e20661640e48a883f4 /drivers/hwmon | |
| parent | hwmon: (pwm-fan): Make use of device properties everywhere (diff) | |
| download | linux-a045a189f425e073ea5d6427ee66252eb990ed92.tar.gz linux-a045a189f425e073ea5d6427ee66252eb990ed92.zip | |
hwmon: (nct6683) Add another customer ID for MSI
The new customer ID was found on a MPG X870E CARBON WIFI (MS-7E49) with
a NCT6687D chip.
Signed-off-by: John Audia <therealgraysky@proton.me>
[groeck: Resolved conflicts in Documentation/hwmon/nct6683.rst]
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
| -rw-r--r-- | drivers/hwmon/nct6683.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hwmon/nct6683.c b/drivers/hwmon/nct6683.c index 3d31b8e2c835..416ac02e9f74 100644 --- a/drivers/hwmon/nct6683.c +++ b/drivers/hwmon/nct6683.c @@ -175,6 +175,7 @@ superio_exit(int ioreg) #define NCT6683_CUSTOMER_ID_MSI 0x201 #define NCT6683_CUSTOMER_ID_MSI2 0x200 #define NCT6683_CUSTOMER_ID_MSI3 0x207 +#define NCT6683_CUSTOMER_ID_MSI4 0x20d #define NCT6683_CUSTOMER_ID_ASROCK 0xe2c #define NCT6683_CUSTOMER_ID_ASROCK2 0xe1b #define NCT6683_CUSTOMER_ID_ASROCK3 0x1631 @@ -1228,6 +1229,8 @@ static int nct6683_probe(struct platform_device *pdev) break; case NCT6683_CUSTOMER_ID_MSI3: break; + case NCT6683_CUSTOMER_ID_MSI4: + break; case NCT6683_CUSTOMER_ID_ASROCK: break; case NCT6683_CUSTOMER_ID_ASROCK2: |
