diff options
author | Sven Eckelmann <sven@narfation.org> | 2022-01-21 17:14:44 +0100 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2022-03-02 09:00:13 +0100 |
commit | eb7da4f17dfcee649767f89e17842f664a459549 (patch) | |
tree | 060e3c17210503a27e4eac8400a21249407fb489 /net/batman-adv/gateway_client.c | |
parent | c138f67ad4721801791a01cd10c816414b33b48d (diff) | |
download | linux-eb7da4f17dfcee649767f89e17842f664a459549.tar.gz |
batman-adv: Migrate to linux/container_of.h
The commit d2a8ebbf8192 ("kernel.h: split out container_of() and
typeof_member() macros") introduced a new header for the container_of
related macros from (previously) linux/kernel.h.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
Diffstat (limited to 'net/batman-adv/gateway_client.c')
-rw-r--r-- | net/batman-adv/gateway_client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c index b7466136e292..d26124bc27e1 100644 --- a/net/batman-adv/gateway_client.c +++ b/net/batman-adv/gateway_client.c @@ -9,6 +9,7 @@ #include <linux/atomic.h> #include <linux/byteorder/generic.h> +#include <linux/container_of.h> #include <linux/errno.h> #include <linux/etherdevice.h> #include <linux/gfp.h> |