Merge git://www.linux-watchdog.org/linux-watchdog
Pull watchdog fix from Wim Van Sebroeck: "It corrects the error code when no device was found for w83697hf_wdt" * git://www.linux-watchdog.org/linux-watchdog: watchdog: w83697hf_wdt: return ENODEV if no device was found
This commit is contained in:
Коммит
0a4e836a60
|
@ -402,7 +402,7 @@ static int __init wdt_init(void)
|
|||
|
||||
if (!found) {
|
||||
pr_err("No W83697HF/HG could be found\n");
|
||||
ret = -EIO;
|
||||
ret = -ENODEV;
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче