diff options
author | Sven Eckelmann <sven@narfation.org> | 2023-10-30 15:58:35 +0100 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2023-11-14 08:16:34 +0100 |
commit | 69f9aff27a94ba574567d3f1c57aca53c76dd01a (patch) | |
tree | b593abce042d2596496dc1a4d58a710038f31482 /net/batman-adv/multicast.c | |
parent | batman-adv: mcast: shrink tracker packet after scrubbing (diff) | |
download | linux-69f9aff27a94ba574567d3f1c57aca53c76dd01a.tar.xz linux-69f9aff27a94ba574567d3f1c57aca53c76dd01a.zip |
batman-adv: Switch to linux/sprintf.h
The commit 39ced19b9e60 ("lib/vsprintf: split out sprintf() and friends")
introduced a new header for the sprintf related functions which were
previously exposed via 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/multicast.c')
-rw-r--r-- | net/batman-adv/multicast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/multicast.c b/net/batman-adv/multicast.c index 62288afdad49..d982daea8329 100644 --- a/net/batman-adv/multicast.c +++ b/net/batman-adv/multicast.c @@ -25,7 +25,6 @@ #include <linux/ip.h> #include <linux/ipv6.h> #include <linux/jiffies.h> -#include <linux/kernel.h> #include <linux/list.h> #include <linux/lockdep.h> #include <linux/netdevice.h> @@ -36,6 +35,7 @@ #include <linux/skbuff.h> #include <linux/slab.h> #include <linux/spinlock.h> +#include <linux/sprintf.h> #include <linux/stddef.h> #include <linux/string.h> #include <linux/types.h> |