diff options
author | Sven Eckelmann <sven@narfation.org> | 2017-11-19 19:12:02 +0300 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2017-12-15 19:24:10 +0300 |
commit | b92b94ac732f5c83c60be2825d8b5cec4dc469d3 (patch) | |
tree | 0126b4907b9a4f285d57e21155d1387d687de02e /net/batman-adv/hard-interface.c | |
parent | a010579273bdfbee6ee79422dbebba3dcf18ebf7 (diff) | |
download | linux-b92b94ac732f5c83c60be2825d8b5cec4dc469d3.tar.xz |
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/hard-interface.c')
-rw-r--r-- | net/batman-adv/hard-interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c index 2f067a507fd5..394e69b77535 100644 --- a/net/batman-adv/hard-interface.c +++ b/net/batman-adv/hard-interface.c @@ -23,7 +23,7 @@ #include <linux/bug.h> #include <linux/byteorder/generic.h> #include <linux/errno.h> -#include <linux/fs.h> +#include <linux/gfp.h> #include <linux/if.h> #include <linux/if_arp.h> #include <linux/if_ether.h> |