Skip to content

Commit ff708b5

Browse files
Petr Klotzgroeck
authored andcommitted
hwmon: (nct6683) Add customer ID for ASRock B650I Lightning WiFi
The ASRock B650I Lightning WiFi motherboard uses an NCT6686D chip with a customer ID of 0x1633. Without this ID, the nct6683 driver fails to recognize the hardware on this board, preventing hardware monitoring from working. Add NCT6683_CUSTOMER_ID_ASROCK6 (0x1633) to the list of supported customer IDs and update the probe function to handle it Signed-off-by: Petr Klotz <pklotz0@protonmail.com> Link: https://lore.kernel.org/r/20260412000911.9063-2-pklotz0@protonmail.com Signed-off-by: Guenter Roeck <linux@roeck-us.net>
1 parent a0c370a commit ff708b5

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

drivers/hwmon/nct6683.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ superio_exit(int ioreg)
182182
#define NCT6683_CUSTOMER_ID_ASROCK3 0x1631
183183
#define NCT6683_CUSTOMER_ID_ASROCK4 0x163e
184184
#define NCT6683_CUSTOMER_ID_ASROCK5 0x1621
185+
#define NCT6683_CUSTOMER_ID_ASROCK6 0x1633
185186

186187
#define NCT6683_REG_BUILD_YEAR 0x604
187188
#define NCT6683_REG_BUILD_MONTH 0x605
@@ -1245,6 +1246,8 @@ static int nct6683_probe(struct platform_device *pdev)
12451246
break;
12461247
case NCT6683_CUSTOMER_ID_ASROCK5:
12471248
break;
1249+
case NCT6683_CUSTOMER_ID_ASROCK6:
1250+
break;
12481251
default:
12491252
if (!force)
12501253
return -ENODEV;

0 commit comments

Comments
 (0)