commit | 7235660593246a7d876bb56d8bcc6d07a17ceaa6 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Sat Apr 27 08:11:04 2024 -0600 |
committer | Tom Rini <trini@konsulko.com> | Mon May 06 15:05:04 2024 -0600 |
tree | a2d705e4db1e6d18eb7e31cdbebd24f8dbb7e554 | |
parent | e9edb7f2e059c77a36dfe77b6716763a1691e7ad [diff] [blame] |
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>
diff --git a/net/arp.c b/net/arp.c index 37848ad..bc1e25f 100644 --- a/net/arp.c +++ b/net/arp.c
@@ -9,10 +9,10 @@ * Copyright 2000-2002 Wolfgang Denk, wd@denx.de */ -#include <common.h> #include <env.h> #include <log.h> #include <net.h> +#include <vsprintf.h> #include <linux/delay.h> #include "arp.h"