diff options
author | Tom Rini <trini@konsulko.com> | 2023-12-14 13:16:47 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-12-21 08:54:37 -0500 |
commit | cb3ce954013ce383e64b73b65df1eb4ef8833570 (patch) | |
tree | 5e33dd6fc11882f093071e5694a22b5d642beaed /net/link_local.h | |
parent | 460b2c068c07d665af48566cfe39582086fed921 (diff) |
global: Drop common.h inclusion
In order to make it easier to move on to dropping common.h from code
directly, remove common.h inclusion from the rest of the header file
which had been including it.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'net/link_local.h')
-rw-r--r-- | net/link_local.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/link_local.h b/net/link_local.h index bb998164df..d870125514 100644 --- a/net/link_local.h +++ b/net/link_local.h @@ -10,15 +10,12 @@ * Licensed under the GPL v2 or later */ -#if defined(CONFIG_CMD_LINK_LOCAL) - #ifndef __LINK_LOCAL_H__ #define __LINK_LOCAL_H__ -#include <common.h> +struct arp_hdr; void link_local_receive_arp(struct arp_hdr *arp, int len); void link_local_start(void); #endif /* __LINK_LOCAL_H__ */ -#endif |