diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2024-10-04 23:03:09 +0300 |
---|---|---|
committer | Wim Van Sebroeck <wim@linux-watchdog.org> | 2024-11-05 12:04:35 +0300 |
commit | 8904da69098512968dbcf310668c521b0a360108 (patch) | |
tree | 1e8ad16b05be6102f80ea82ad3fb9830a3056ecb | |
parent | ebc75304f0b65246dedc79c6b7a9c98ee64e3a8c (diff) | |
download | linux-8904da69098512968dbcf310668c521b0a360108.tar.xz |
watchdog: octeon-wdt: don't print out if registering watchdog fails
The core will do this already.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20241004200314.5459-7-wsa+renesas@sang-engineering.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
-rw-r--r-- | drivers/watchdog/octeon-wdt-main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/watchdog/octeon-wdt-main.c b/drivers/watchdog/octeon-wdt-main.c index 52d49e4e35a0..0615bb816082 100644 --- a/drivers/watchdog/octeon-wdt-main.c +++ b/drivers/watchdog/octeon-wdt-main.c @@ -559,10 +559,8 @@ static int __init octeon_wdt_init(void) watchdog_set_nowayout(&octeon_wdt, nowayout); ret = watchdog_register_device(&octeon_wdt); - if (ret) { - pr_err("watchdog_register_device() failed: %d\n", ret); + if (ret) return ret; - } if (disable) { pr_notice("disabled\n"); |