aboutsummaryrefslogtreecommitdiff
path: root/boot/bootretry.c
diff options
context:
space:
mode:
authorTom Rini2024-04-27 08:11:02 -0600
committerTom Rini2024-05-06 15:05:04 -0600
commitc4b646d43608500145b3934c9db2ee82aab3a837 (patch)
tree1ba0b5e45dcba5d52c226e3fc6ad5b4a6eb1e067 /boot/bootretry.c
parentc93cc8ed4166e0486d5c09d952695662708cd72c (diff)
boot: Remove <common.h> and add needed includes
Remove <common.h> from all "boot/" files and when needed add missing include files directly. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'boot/bootretry.c')
-rw-r--r--boot/bootretry.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/boot/bootretry.c b/boot/bootretry.c
index 8d850df9d48..587b2de7d6b 100644
--- a/boot/bootretry.c
+++ b/boot/bootretry.c
@@ -4,12 +4,13 @@
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/
-#include <common.h>
+#include <stdio.h>
#include <bootretry.h>
#include <cli.h>
#include <env.h>
#include <errno.h>
#include <time.h>
+#include <vsprintf.h>
#include <watchdog.h>
static uint64_t endtime; /* must be set, default is instant timeout */