From fb85ea18977a7d8a24523dd1c58d45fcd9647b98 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Tue, 17 Jul 2018 13:17:39 +0200 Subject: [PATCH] watchdog: cadence: Do not stop wdt in probe Watchdog can be started before probe and u-boot should just take control over it. That's why do not stop watchdog in probe to cover cases where watchdog can expire before probe and start. Signed-off-by: Michal Simek --- drivers/watchdog/cdns_wdt.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/watchdog/cdns_wdt.c b/drivers/watchdog/cdns_wdt.c index b61bab4304e..63d99da5fc3 100644 --- a/drivers/watchdog/cdns_wdt.c +++ b/drivers/watchdog/cdns_wdt.c @@ -225,8 +225,6 @@ static int cdns_wdt_probe(struct udevice *dev) { debug("%s: Probing wdt%u\n", __func__, dev->seq); - cdns_wdt_stop(dev); - return 0; } -- 2.47.3