[PATCH 1/3] watchdog: omap: Remove duplicate start() with early_init
From: Diogo Ivo
Date: Fri Sep 11 2026 - 05:26:59 EST
Commit cd004d8299f1 ("watchdog: Fix OMAP watchdog early handling")
reworked the handling of the early_enable parameter and added an
explicit call to omap_wdt_start() in case that parameter is true,
but left the call that was previously there, which became duplicate.
Fix this by removing the unnecessary duplicate call.
Signed-off-by: Diogo Ivo <diogo.ivo@xxxxxxxxxxx>
---
drivers/watchdog/omap_wdt.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c
index 2482a1982c8b..e6d869e36c43 100644
--- a/drivers/watchdog/omap_wdt.c
+++ b/drivers/watchdog/omap_wdt.c
@@ -286,9 +286,6 @@ static int omap_wdt_probe(struct platform_device *pdev)
readl_relaxed(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
wdev->wdog.timeout);
- if (early_enable)
- omap_wdt_start(&wdev->wdog);
-
pm_runtime_put(wdev->dev);
return 0;
--
2.55.0