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 /include | |
parent | 99699a770744b91d93399daccf3b3caf506c04c7 (diff) | |
download | u-boot-4e4bf9449b4f436419490a4a8cf4de17433cac15.tar.gz u-boot-4e4bf9449b4f436419490a4a8cf4de17433cac15.tar.bz2 u-boot-4e4bf9449b4f436419490a4a8cf4de17433cac15.zip |
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 'include')
-rw-r--r-- | include/common.h | 1 | ||||
-rw-r--r-- | include/display_options.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index 71df59bca0..25c317f443 100644 --- a/include/common.h +++ b/include/common.h @@ -23,7 +23,6 @@ #include <stdio.h> #include <linux/kernel.h> #include <asm/u-boot.h> /* boot information for Linux kernel */ -#include <display_options.h> #include <vsprintf.h> #endif /* __ASSEMBLY__ */ diff --git a/include/display_options.h b/include/display_options.h index 33fcbb8533..85dacbc759 100644 --- a/include/display_options.h +++ b/include/display_options.h @@ -19,6 +19,7 @@ * @size: Size to print * @suffix String to print after the size */ +#include <display_options.h> void print_size(uint64_t size, const char *suffix); /** |