diff options
author | Sven Eckelmann | 2017-11-19 17:12:02 +0100 |
---|---|---|
committer | Simon Wunderlich | 2017-12-15 17:24:10 +0100 |
commit | b92b94ac732f5c83c60be2825d8b5cec4dc469d3 (patch) | |
tree | 0126b4907b9a4f285d57e21155d1387d687de02e /net/batman-adv/soft-interface.c | |
parent | a010579273bdfbee6ee79422dbebba3dcf18ebf7 (diff) |
batman-adv: include gfp.h for GFP_* defines
The linux/gfp.h provides the GFP_ATOMIC and GFP_KERNEL define. It should
therefore be included instead of linux/fs.h.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
Diffstat (limited to 'net/batman-adv/soft-interface.c')
-rw-r--r-- | net/batman-adv/soft-interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/soft-interface.c b/net/batman-adv/soft-interface.c index e543024f98ef..ba8fd06eee7e 100644 --- a/net/batman-adv/soft-interface.c +++ b/net/batman-adv/soft-interface.c @@ -27,7 +27,7 @@ #include <linux/errno.h> #include <linux/etherdevice.h> #include <linux/ethtool.h> -#include <linux/fs.h> +#include <linux/gfp.h> #include <linux/if_ether.h> #include <linux/if_vlan.h> #include <linux/jiffies.h> |