summaryrefslogtreecommitdiff
path: root/net/net6.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-04-27 08:11:04 -0600
committerTom Rini <trini@konsulko.com>2024-05-06 15:05:04 -0600
commit26d4114da22272937c899d67b51498559ba312d2 (patch)
treea2d705e4db1e6d18eb7e31cdbebd24f8dbb7e554 /net/net6.c
parent0f92fa4560335f04858bfc9881e0bc6bbb756b3f (diff)
downloadu-boot-26d4114da22272937c899d67b51498559ba312d2.tar.gz
u-boot-26d4114da22272937c899d67b51498559ba312d2.tar.bz2
u-boot-26d4114da22272937c899d67b51498559ba312d2.zip
net: Remove <common.h> and add needed includes
Remove <common.h> from all "net/" files and when needed add missing include files directly. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'net/net6.c')
-rw-r--r--net/net6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/net6.c b/net/net6.c
index 2dd64c0e16..4cff98df15 100644
--- a/net/net6.c
+++ b/net/net6.c
@@ -9,12 +9,12 @@
/* Simple IPv6 network layer implementation */
-#include <common.h>
#include <env_internal.h>
#include <malloc.h>
#include <net.h>
#include <net6.h>
#include <ndisc.h>
+#include <vsprintf.h>
/* NULL IPv6 address */
struct in6_addr const net_null_addr_ip6 = ZERO_IPV6_ADDR;