Commit d5f3e24f authored by Wolfram Sang's avatar Wolfram Sang Committed by Wim Van Sebroeck
Browse files

watchdog: bcm2835_wdt: drop warning after registering device



The core will print out details now.

Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@linux-watchdog.org>
parent 4ab05433
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -202,10 +202,8 @@ static int bcm2835_wdt_probe(struct platform_device *pdev)

	watchdog_stop_on_reboot(&bcm2835_wdt_wdd);
	err = devm_watchdog_register_device(dev, &bcm2835_wdt_wdd);
	if (err) {
		dev_err(dev, "Failed to register watchdog device");
	if (err)
		return err;
	}

	if (pm_power_off == NULL) {
		pm_power_off = bcm2835_power_off;