mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
watchdog: w83627hf_wdt: Fix support NCT6116D
We should select nct6116 for the new chip, not nct6102. Signed-off-by: Srikanth Krishnakar <skrishnakar@gmail.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
This commit is contained in:
parent
d1eef1c619
commit
afcd5b9be5
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ static int wdt_find(int addr)
|
|||
cr_wdt_csr = NCT6102D_WDT_CSR;
|
||||
break;
|
||||
case NCT6116_ID:
|
||||
ret = nct6102;
|
||||
ret = nct6116;
|
||||
cr_wdt_timeout = NCT6102D_WDT_TIMEOUT;
|
||||
cr_wdt_control = NCT6102D_WDT_CONTROL;
|
||||
cr_wdt_csr = NCT6102D_WDT_CSR;
|
||||
|
|
Loading…
Reference in a new issue