diff options
author | Simon Glass | 2020-05-10 11:40:05 -0600 |
---|---|---|
committer | Tom Rini | 2020-05-18 21:19:18 -0400 |
commit | f7ae49fc4f363a803dab3be078e93ead8e75a8e9 (patch) | |
tree | a40dc0c2d47875a8b069c8704808e2dc8f9db5fa /net | |
parent | 3c7dded8e179ee213c8267c892720b84a7a59fd5 (diff) |
common: Drop log.h from common header
Move this header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/arp.c | 1 | ||||
-rw-r--r-- | net/bootp.c | 1 | ||||
-rw-r--r-- | net/dns.c | 1 | ||||
-rw-r--r-- | net/eth-uclass.c | 1 | ||||
-rw-r--r-- | net/eth_legacy.c | 1 | ||||
-rw-r--r-- | net/link_local.c | 1 | ||||
-rw-r--r-- | net/mdio-mux-uclass.c | 1 | ||||
-rw-r--r-- | net/mdio-uclass.c | 1 | ||||
-rw-r--r-- | net/net.c | 1 | ||||
-rw-r--r-- | net/nfs.c | 1 | ||||
-rw-r--r-- | net/ping.c | 1 | ||||
-rw-r--r-- | net/rarp.c | 1 | ||||
-rw-r--r-- | net/sntp.c | 1 | ||||
-rw-r--r-- | net/tftp.c | 1 |
14 files changed, 14 insertions, 0 deletions
diff --git a/net/arp.c b/net/arp.c index 8fc744d932c..b72b1fd7370 100644 --- a/net/arp.c +++ b/net/arp.c @@ -11,6 +11,7 @@ #include <common.h> #include <env.h> +#include <log.h> #include <net.h> #include "arp.h" diff --git a/net/bootp.c b/net/bootp.c index 05bfede14a5..d1e8cb8815b 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -13,6 +13,7 @@ #include <command.h> #include <env.h> #include <efi_loader.h> +#include <log.h> #include <net.h> #include <rand.h> #include <uuid.h> diff --git a/net/dns.c b/net/dns.c index 67d761d7c0f..e35c4dca7c5 100644 --- a/net/dns.c +++ b/net/dns.c @@ -25,6 +25,7 @@ #include <common.h> #include <command.h> #include <env.h> +#include <log.h> #include <net.h> #include <asm/unaligned.h> diff --git a/net/eth-uclass.c b/net/eth-uclass.c index 5682b3a731c..7f89f65c92a 100644 --- a/net/eth-uclass.c +++ b/net/eth-uclass.c @@ -9,6 +9,7 @@ #include <bootstage.h> #include <dm.h> #include <env.h> +#include <log.h> #include <net.h> #include <dm/device-internal.h> #include <dm/uclass-internal.h> diff --git a/net/eth_legacy.c b/net/eth_legacy.c index e0ef4a11a7a..9d40f86ab60 100644 --- a/net/eth_legacy.c +++ b/net/eth_legacy.c @@ -9,6 +9,7 @@ #include <bootstage.h> #include <command.h> #include <env.h> +#include <log.h> #include <net.h> #include <phy.h> #include <linux/errno.h> diff --git a/net/link_local.c b/net/link_local.c index 1986b9b9d3b..8aec3c79969 100644 --- a/net/link_local.c +++ b/net/link_local.c @@ -13,6 +13,7 @@ #include <common.h> #include <env.h> +#include <log.h> #include <net.h> #include <rand.h> #include "arp.h" diff --git a/net/mdio-mux-uclass.c b/net/mdio-mux-uclass.c index e425207d6e4..6674eb6bee7 100644 --- a/net/mdio-mux-uclass.c +++ b/net/mdio-mux-uclass.c @@ -6,6 +6,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <miiphy.h> #include <dm/device-internal.h> #include <dm/uclass-internal.h> diff --git a/net/mdio-uclass.c b/net/mdio-uclass.c index 8e7872155a1..66ee2e19763 100644 --- a/net/mdio-uclass.c +++ b/net/mdio-uclass.c @@ -6,6 +6,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <malloc.h> #include <miiphy.h> #include <dm/device-internal.h> diff --git a/net/net.c b/net/net.c index 035293537b8..37932919d04 100644 --- a/net/net.c +++ b/net/net.c @@ -95,6 +95,7 @@ #include <env_internal.h> #include <errno.h> #include <image.h> +#include <log.h> #include <net.h> #include <net/fastboot.h> #include <net/tftp.h> diff --git a/net/nfs.c b/net/nfs.c index 72e1018a3bd..70d0e08bde9 100644 --- a/net/nfs.c +++ b/net/nfs.c @@ -30,6 +30,7 @@ #include <command.h> #include <flash.h> #include <image.h> +#include <log.h> #include <net.h> #include <malloc.h> #include <mapmem.h> diff --git a/net/ping.c b/net/ping.c index 024e8eab909..0e33660f6c5 100644 --- a/net/ping.c +++ b/net/ping.c @@ -11,6 +11,7 @@ #include "ping.h" #include "arp.h" +#include <log.h> #include <net.h> static ushort ping_seq_number; diff --git a/net/rarp.c b/net/rarp.c index c1d9fcaf251..a676a4253b5 100644 --- a/net/rarp.c +++ b/net/rarp.c @@ -6,6 +6,7 @@ #include <common.h> #include <command.h> +#include <log.h> #include <net.h> #include <net/tftp.h> #include "nfs.h" diff --git a/net/sntp.c b/net/sntp.c index 9c8ee34a4ed..39d7664a224 100644 --- a/net/sntp.c +++ b/net/sntp.c @@ -8,6 +8,7 @@ #include <common.h> #include <command.h> #include <dm.h> +#include <log.h> #include <net.h> #include <rtc.h> diff --git a/net/tftp.c b/net/tftp.c index 3348521c904..180140e495b 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -12,6 +12,7 @@ #include <env.h> #include <image.h> #include <lmb.h> +#include <log.h> #include <mapmem.h> #include <net.h> #include <net/tftp.h> |