From: Rasmus Villemoes Date: Tue, 27 Sep 2022 07:45:44 +0000 (+0200) Subject: watchdog: gpio_wdt: use __udelay() to avoid recursion X-Git-Tag: v2022.10~5^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51443c9a499989f698a2921e72156713fe1a6bc2;p=platform%2Fkernel%2Fu-boot.git watchdog: gpio_wdt: use __udelay() to avoid recursion The udelay() function in lib/time.c contains a WATCHDOG_RESET() call. The only reason this doesn't lead to a catastrophic infinite recursion is due to the rate-limiting in wdt-uclass.c: if (time_after_eq(now, priv->next_reset)) { priv->next_reset = now + priv->reset_period; wdt_reset(dev); } But this would fall apart if ->next_reset was updated after calling the device's reset method. This is needlessly fragile, and it's easy enough to avoid that recursion in the first place by just using __udelay() directly. Signed-off-by: Rasmus Villemoes Reviewed-by: Stefan Roese --- diff --git a/drivers/watchdog/gpio_wdt.c b/drivers/watchdog/gpio_wdt.c index fe06ec8..2920c2c 100644 --- a/drivers/watchdog/gpio_wdt.c +++ b/drivers/watchdog/gpio_wdt.c @@ -31,7 +31,7 @@ static int gpio_wdt_reset(struct udevice *dev) case HW_ALGO_LEVEL: /* Pulse */ dm_gpio_set_value(&priv->gpio, 1); - udelay(1); + __udelay(1); dm_gpio_set_value(&priv->gpio, 0); break; }