[PATCH v3 13/16] watchdog: st_lpc_wdt: drop warning after calling watchdog_init_timeout

From: Wolfram Sang
Date: Fri Apr 19 2019 - 14:17:16 EST


The core will print out details now.

Reviewed-by: Guenter Roeck <linux@xxxxxxxxxxxx>
Signed-off-by: Wolfram Sang <wsa+renesas@xxxxxxxxxxxxxxxxxxxx>
---
drivers/watchdog/st_lpc_wdt.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/watchdog/st_lpc_wdt.c b/drivers/watchdog/st_lpc_wdt.c
index 9a5ed95c3403..7a90184eb950 100644
--- a/drivers/watchdog/st_lpc_wdt.c
+++ b/drivers/watchdog/st_lpc_wdt.c
@@ -224,10 +224,8 @@ static int st_wdog_probe(struct platform_device *pdev)

/* Init Watchdog timeout with value in DT */
ret = watchdog_init_timeout(&st_wdog_dev, 0, dev);
- if (ret) {
- dev_err(dev, "Unable to initialise watchdog timeout\n");
+ if (ret)
return ret;
- }

ret = devm_watchdog_register_device(dev, &st_wdog_dev);
if (ret) {
--
2.11.0