diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-27 08:11:02 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:05:04 -0600 |
commit | c4b646d43608500145b3934c9db2ee82aab3a837 (patch) | |
tree | 1ba0b5e45dcba5d52c226e3fc6ad5b4a6eb1e067 /boot/scene_textline.c | |
parent | c93cc8ed4166e0486d5c09d952695662708cd72c (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/scene_textline.c')
-rw-r--r-- | boot/scene_textline.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/boot/scene_textline.c b/boot/scene_textline.c index 6ea072a1c26..bba8663b98d 100644 --- a/boot/scene_textline.c +++ b/boot/scene_textline.c @@ -8,10 +8,12 @@ #define LOG_CATEGORY LOGC_EXPO -#include <common.h> #include <expo.h> #include <menu.h> +#include <log.h> #include <video_console.h> +#include <linux/errno.h> +#include <linux/string.h> #include "scene_internal.h" int scene_textline(struct scene *scn, const char *name, uint id, uint max_chars, |