Re: [PATCH] watchdog: max6370: use __udelay() to avoid recursion

2022-09-27 Thread Stefan Roese
On 27.09.22 12:19, Pali Rohár wrote: The udelay() function in lib/time.c contains a WATCHDOG_RESET() call. So use __udelay() in max6370_wdt.c to prevent recursion. Fixes: 0a095fc53b15 ("watchdog: Add MAX6370 watchdog timer driver") Signed-off-by: Pali Rohár Applied to u-boot-watchdog/master

Re: [PATCH] watchdog: max6370: use __udelay() to avoid recursion

2022-09-27 Thread Stefan Roese
On 27.09.22 12:19, Pali Rohár wrote: The udelay() function in lib/time.c contains a WATCHDOG_RESET() call. So use __udelay() in max6370_wdt.c to prevent recursion. Fixes: 0a095fc53b15 ("watchdog: Add MAX6370 watchdog timer driver") Signed-off-by: Pali Rohár Reviewed-by: Stefan Roese Thanks,

[PATCH] watchdog: max6370: use __udelay() to avoid recursion

2022-09-27 Thread Pali Rohár
The udelay() function in lib/time.c contains a WATCHDOG_RESET() call. So use __udelay() in max6370_wdt.c to prevent recursion. Fixes: 0a095fc53b15 ("watchdog: Add MAX6370 watchdog timer driver") Signed-off-by: Pali Rohár --- drivers/watchdog/max6370_wdt.c | 2 +- 1 file changed, 1 insertion(+),