Skip to content

Commit 05b68e1

Browse files
AKoskovichgroeck
authored andcommitted
hwmon: (nct6683) Add another customer ID for ASRock X670E Taichi
This value was found on an ASRock X670E Taichi with an NCT6686D chip. Signed-off-by: Alexander Koskovich <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Guenter Roeck <[email protected]>
1 parent 10b0290 commit 05b68e1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Documentation/hwmon/nct6683.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,6 @@ Intel DH87RL NCT6683D EC firmware version 1.0 build 04/03/13
6262
Intel DH87MC NCT6683D EC firmware version 1.0 build 04/03/13
6363
Intel DB85FL NCT6683D EC firmware version 1.0 build 04/03/13
6464
ASRock X570 NCT6683D EC firmware version 1.0 build 06/28/19
65+
ASRock X670E NCT6686D EC firmware version 1.0 build 05/19/22
6566
MSI B550 NCT6687D EC firmware version 1.0 build 05/07/20
6667
=============== ===============================================

drivers/hwmon/nct6683.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ superio_exit(int ioreg)
176176
#define NCT6683_CUSTOMER_ID_MSI2 0x200
177177
#define NCT6683_CUSTOMER_ID_ASROCK 0xe2c
178178
#define NCT6683_CUSTOMER_ID_ASROCK2 0xe1b
179+
#define NCT6683_CUSTOMER_ID_ASROCK3 0x1631
179180

180181
#define NCT6683_REG_BUILD_YEAR 0x604
181182
#define NCT6683_REG_BUILD_MONTH 0x605
@@ -1227,6 +1228,8 @@ static int nct6683_probe(struct platform_device *pdev)
12271228
break;
12281229
case NCT6683_CUSTOMER_ID_ASROCK2:
12291230
break;
1231+
case NCT6683_CUSTOMER_ID_ASROCK3:
1232+
break;
12301233
default:
12311234
if (!force)
12321235
return -ENODEV;

0 commit comments

Comments
 (0)