diff options
author | Rasmus Villemoes <ravi@prevas.dk> | 2024-10-03 23:28:01 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2024-10-23 06:52:38 +0200 |
commit | a21aed059761d67066d71a09b2dfb9387fdcfcbd (patch) | |
tree | 22bcfcf1660bff468025b980cf45515b6ea89cf0 /boot | |
parent | 02e352f0da0cad06c6db69d928308362a6835a9f (diff) | |
download | u-boot-a21aed059761d67066d71a09b2dfb9387fdcfcbd.tar.gz |
boot: cedit: include u-boot/schedule.h
This TU currently relies on getting a declaration of schedule()
through some nested include. Include the proper header directly.
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'boot')
-rw-r--r-- | boot/cedit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/cedit.c b/boot/cedit.c index d12892fbc4a..d69290c172e 100644 --- a/boot/cedit.c +++ b/boot/cedit.c @@ -20,6 +20,7 @@ #include <video.h> #include <linux/delay.h> #include "scene_internal.h" +#include <u-boot/schedule.h> enum { CMOS_MAX_BITS = 2048, |