diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:00 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 17:33:33 -0400 |
commit | 52f24238046ca28085f6de946d0358e5c7c7cbe8 (patch) | |
tree | 960e1e8fd0ab37ccb58817f4acc1dffb018801e8 /net | |
parent | b67eefdb6ec9467c41b1c0081f0823bbfff36b00 (diff) |
common: Drop bootstage.h from common header
Move this fairly uncommon header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/bootp.c | 1 | ||||
-rw-r--r-- | net/eth-uclass.c | 1 | ||||
-rw-r--r-- | net/eth_common.c | 1 | ||||
-rw-r--r-- | net/eth_legacy.c | 1 | ||||
-rw-r--r-- | net/net.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/net/bootp.c b/net/bootp.c index 2c918d8379..05bfede14a 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -9,6 +9,7 @@ */ #include <common.h> +#include <bootstage.h> #include <command.h> #include <env.h> #include <efi_loader.h> diff --git a/net/eth-uclass.c b/net/eth-uclass.c index 48560d59f6..5682b3a731 100644 --- a/net/eth-uclass.c +++ b/net/eth-uclass.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <bootstage.h> #include <dm.h> #include <env.h> #include <net.h> diff --git a/net/eth_common.c b/net/eth_common.c index ed26b1b693..58f899a024 100644 --- a/net/eth_common.c +++ b/net/eth_common.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <bootstage.h> #include <dm.h> #include <env.h> #include <miiphy.h> diff --git a/net/eth_legacy.c b/net/eth_legacy.c index 5d6b0d7d7f..e0ef4a11a7 100644 --- a/net/eth_legacy.c +++ b/net/eth_legacy.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <bootstage.h> #include <command.h> #include <env.h> #include <net.h> @@ -88,6 +88,7 @@ #include <common.h> +#include <bootstage.h> #include <command.h> #include <console.h> #include <env.h> |