diff options
| author | Rasmus Villemoes <[email protected]> | 2024-10-03 23:28:01 +0200 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2024-10-23 06:52:38 +0200 |
| commit | a21aed059761d67066d71a09b2dfb9387fdcfcbd (patch) | |
| tree | 22bcfcf1660bff468025b980cf45515b6ea89cf0 | |
| parent | 02e352f0da0cad06c6db69d928308362a6835a9f (diff) | |
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 <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
| -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, |
