summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-05-10 11:40:00 -0600
committerTom Rini <trini@konsulko.com>2020-05-18 17:33:33 -0400
commit52f24238046ca28085f6de946d0358e5c7c7cbe8 (patch)
tree960e1e8fd0ab37ccb58817f4acc1dffb018801e8 /net
parentb67eefdb6ec9467c41b1c0081f0823bbfff36b00 (diff)
downloadu-boot-52f24238046ca28085f6de946d0358e5c7c7cbe8.tar.gz
u-boot-52f24238046ca28085f6de946d0358e5c7c7cbe8.tar.xz
u-boot-52f24238046ca28085f6de946d0358e5c7c7cbe8.zip
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.c1
-rw-r--r--net/eth-uclass.c1
-rw-r--r--net/eth_common.c1
-rw-r--r--net/eth_legacy.c1
-rw-r--r--net/net.c1
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>
diff --git a/net/net.c b/net/net.c
index 087d399a24..035293537b 100644
--- a/net/net.c
+++ b/net/net.c
@@ -88,6 +88,7 @@
#include <common.h>
+#include <bootstage.h>
#include <command.h>
#include <console.h>
#include <env.h>