diff options
Diffstat (limited to 'boot/bootretry.c')
-rw-r--r-- | boot/bootretry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootretry.c b/boot/bootretry.c index 2bc9c6866e0..8d850df9d48 100644 --- a/boot/bootretry.c +++ b/boot/bootretry.c @@ -44,7 +44,7 @@ int bootretry_tstc_timeout(void) while (!tstc()) { /* while no incoming data */ if (retry_time >= 0 && get_ticks() > endtime) return -ETIMEDOUT; - WATCHDOG_RESET(); + schedule(); } return 0; |