diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:39:56 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 17:33:31 -0400 |
commit | 90526e9fbac47af16d70f323feae45d8d1b0f9b7 (patch) | |
tree | 2a89900cbb7a569491f0d9cab5835c7296ef2c25 /cmd | |
parent | c3dc39a2f85b16bf590789f7e283cd72275cd168 (diff) | |
download | u-boot-90526e9fbac47af16d70f323feae45d8d1b0f9b7.tar.gz |
common: Drop net.h from common header
Move this header out of the common header. Network support is used in
quite a few places but it still does not warrant blanket inclusion.
Note that this net.h header itself has quite a lot in it. It could be
split into the driver-mode support, functions, structures, checksumming,
etc.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bdinfo.c | 2 | ||||
-rw-r--r-- | cmd/elf.c | 1 | ||||
-rw-r--r-- | cmd/ethsw.c | 1 | ||||
-rw-r--r-- | cmd/fat.c | 1 | ||||
-rw-r--r-- | cmd/load.c | 1 | ||||
-rw-r--r-- | cmd/mem.c | 1 | ||||
-rw-r--r-- | cmd/mvebu/bubt.c | 1 | ||||
-rw-r--r-- | cmd/nand.c | 1 | ||||
-rw-r--r-- | cmd/nvedit.c | 1 | ||||
-rw-r--r-- | cmd/pxe_utils.c | 1 | ||||
-rw-r--r-- | cmd/sf.c | 1 | ||||
-rw-r--r-- | cmd/tlv_eeprom.c | 1 | ||||
-rw-r--r-- | cmd/ximg.c | 1 |
13 files changed, 14 insertions, 0 deletions
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 9edcf8d74e..ec399c07ae 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -10,7 +10,9 @@ #include <common.h> #include <command.h> #include <env.h> +#include <net.h> #include <vsprintf.h> +#include <asm/cache.h> #include <linux/compiler.h> DECLARE_GLOBAL_DATA_PTR; @@ -14,6 +14,7 @@ #include <vxworks.h> #ifdef CONFIG_X86 #include <vbe.h> +#include <asm/cache.h> #include <asm/e820.h> #include <linux/linkage.h> #endif diff --git a/cmd/ethsw.c b/cmd/ethsw.c index 8d271ce1f3..d178a0c10d 100644 --- a/cmd/ethsw.c +++ b/cmd/ethsw.c @@ -11,6 +11,7 @@ #include <errno.h> #include <env_flags.h> #include <ethsw.h> +#include <net.h> static const char *ethsw_name; @@ -11,6 +11,7 @@ #include <mapmem.h> #include <fat.h> #include <fs.h> +#include <asm/cache.h> int do_fat_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { diff --git a/cmd/load.c b/cmd/load.c index fab30fe894..36db571cea 100644 --- a/cmd/load.c +++ b/cmd/load.c @@ -19,6 +19,7 @@ #include <exports.h> #include <serial.h> #include <xyzModem.h> +#include <asm/cache.h> DECLARE_GLOBAL_DATA_PTR; @@ -19,6 +19,7 @@ #include <flash.h> #include <hash.h> #include <mapmem.h> +#include <rand.h> #include <watchdog.h> #include <asm/io.h> #include <linux/compiler.h> diff --git a/cmd/mvebu/bubt.c b/cmd/mvebu/bubt.c index f0ee54d6d2..c5af669d0d 100644 --- a/cmd/mvebu/bubt.c +++ b/cmd/mvebu/bubt.c @@ -10,6 +10,7 @@ #include <env.h> #include <flash.h> #include <image.h> +#include <net.h> #include <vsprintf.h> #include <errno.h> #include <dm.h> diff --git a/cmd/nand.c b/cmd/nand.c index 4de6892a01..9c2b5d718e 100644 --- a/cmd/nand.c +++ b/cmd/nand.c @@ -21,6 +21,7 @@ #include <common.h> #include <image.h> +#include <asm/cache.h> #include <linux/mtd/mtd.h> #include <command.h> #include <console.h> diff --git a/cmd/nvedit.c b/cmd/nvedit.c index 966c134059..a86063df94 100644 --- a/cmd/nvedit.c +++ b/cmd/nvedit.c @@ -29,6 +29,7 @@ #include <console.h> #include <env.h> #include <env_internal.h> +#include <net.h> #include <search.h> #include <errno.h> #include <malloc.h> diff --git a/cmd/pxe_utils.c b/cmd/pxe_utils.c index c244bfb10d..8fc33670c8 100644 --- a/cmd/pxe_utils.c +++ b/cmd/pxe_utils.c @@ -10,6 +10,7 @@ #include <malloc.h> #include <mapmem.h> #include <lcd.h> +#include <net.h> #include <linux/string.h> #include <linux/ctype.h> #include <errno.h> @@ -13,6 +13,7 @@ #include <mapmem.h> #include <spi.h> #include <spi_flash.h> +#include <asm/cache.h> #include <jffs2/jffs2.h> #include <linux/mtd/mtd.h> diff --git a/cmd/tlv_eeprom.c b/cmd/tlv_eeprom.c index 211ab2680f..8b768f3108 100644 --- a/cmd/tlv_eeprom.c +++ b/cmd/tlv_eeprom.c @@ -15,6 +15,7 @@ #include <i2c.h> #include <i2c_eeprom.h> #include <env.h> +#include <net.h> #include <linux/ctype.h> #include <u-boot/crc.h> diff --git a/cmd/ximg.c b/cmd/ximg.c index 770f6a3eed..73c764255f 100644 --- a/cmd/ximg.c +++ b/cmd/ximg.c @@ -24,6 +24,7 @@ #include <bzlib.h> #endif #include <asm/byteorder.h> +#include <asm/cache.h> #include <asm/io.h> #ifndef CONFIG_SYS_XIMG_LEN |