diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2019-05-18 23:27:26 +0200 |
---|---|---|
committer | Wim Van Sebroeck <wim@linux-watchdog.org> | 2019-07-08 15:13:05 +0200 |
commit | cdad26977e3fc0621a9378ef286e243b5ec4b7c0 (patch) | |
tree | 44b560ea54de28a47116d5295c783019545297c1 | |
parent | 6ab6d33ee002e68d607d77bab0612705995ffbe6 (diff) | |
download | linux-cdad26977e3fc0621a9378ef286e243b5ec4b7c0.tar.gz linux-cdad26977e3fc0621a9378ef286e243b5ec4b7c0.tar.bz2 linux-cdad26977e3fc0621a9378ef286e243b5ec4b7c0.zip |
watchdog: digicolor_wdt: drop warning after registering device
The core will print out details now.
Signed-off-by: Wolfram Sang <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/digicolor_wdt.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/watchdog/digicolor_wdt.c b/drivers/watchdog/digicolor_wdt.c index 8af6e9a67d0d..33cda95bd238 100644 --- a/drivers/watchdog/digicolor_wdt.c +++ b/drivers/watchdog/digicolor_wdt.c @@ -141,13 +141,7 @@ static int dc_wdt_probe(struct platform_device *pdev) watchdog_set_restart_priority(&dc_wdt_wdd, 128); watchdog_init_timeout(&dc_wdt_wdd, timeout, dev); watchdog_stop_on_reboot(&dc_wdt_wdd); - ret = devm_watchdog_register_device(dev, &dc_wdt_wdd); - if (ret) { - dev_err(dev, "Failed to register watchdog device"); - return ret; - } - - return 0; + return devm_watchdog_register_device(dev, &dc_wdt_wdd); } static const struct of_device_id dc_wdt_of_match[] = { |