diff options
author | Simon Glass <sjg@chromium.org> | 2022-07-31 12:28:48 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-10 13:46:55 -0400 |
commit | 4e4bf9449b4f436419490a4a8cf4de17433cac15 (patch) | |
tree | d8a562562004af2b2a5dc0dbe1b19bec686c21de /boot | |
parent | 99699a770744b91d93399daccf3b3caf506c04c7 (diff) | |
download | u-boot-4e4bf9449b4f436419490a4a8cf4de17433cac15.zip u-boot-4e4bf9449b4f436419490a4a8cf4de17433cac15.tar.gz u-boot-4e4bf9449b4f436419490a4a8cf4de17433cac15.tar.bz2 |
common: Drop display_options.h from common header
Move this out of the common header and include it only where needed.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot')
-rw-r--r-- | boot/image-board.c | 1 | ||||
-rw-r--r-- | boot/image.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/boot/image-board.c b/boot/image-board.c index b846bff..4e4d1c1 100644 --- a/boot/image-board.c +++ b/boot/image-board.c @@ -11,6 +11,7 @@ #include <common.h> #include <bootstage.h> #include <cpu_func.h> +#include <display_options.h> #include <env.h> #include <fpga.h> #include <image.h> diff --git a/boot/image.c b/boot/image.c index 5dcb55b..a0d0cc2 100644 --- a/boot/image.c +++ b/boot/image.c @@ -9,6 +9,7 @@ #ifndef USE_HOSTCC #include <common.h> #include <env.h> +#include <display_options.h> #include <init.h> #include <lmb.h> #include <log.h> |