diff options
| author | Simon Glass <[email protected]> | 2022-07-31 12:28:48 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-08-10 13:46:55 -0400 |
| commit | 4e4bf9449b4f436419490a4a8cf4de17433cac15 (patch) | |
| tree | d8a562562004af2b2a5dc0dbe1b19bec686c21de /net | |
| parent | 99699a770744b91d93399daccf3b3caf506c04c7 (diff) | |
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 <[email protected]>
Diffstat (limited to 'net')
| -rw-r--r-- | net/nfs.c | 1 | ||||
| -rw-r--r-- | net/tftp.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/net/nfs.c b/net/nfs.c index 9f65cfb20dc..c6a124885e4 100644 --- a/net/nfs.c +++ b/net/nfs.c @@ -28,6 +28,7 @@ #include <common.h> #include <command.h> +#include <display_options.h> #ifdef CONFIG_SYS_DIRECT_FLASH_NFS #include <flash.h> #endif diff --git a/net/tftp.c b/net/tftp.c index 451d73529f2..dea9c25ffd8 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -7,6 +7,7 @@ */ #include <common.h> #include <command.h> +#include <display_options.h> #include <efi_loader.h> #include <env.h> #include <image.h> |
