diff options
author | Rashika Kheria <rashika.kheria@gmail.com> | 2014-02-09 22:31:42 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-09 17:32:50 -0800 |
commit | bd76ed36bac50b5402fd09c3fc2f368ef324ffe2 (patch) | |
tree | 4ac6cea9fdf8ba7b4224b2ef2a558e2d6a4cf278 /net | |
parent | 535d3ae9c808e6a5248f0524dbc7a9e997cf3288 (diff) | |
download | op-kernel-dev-bd76ed36bac50b5402fd09c3fc2f368ef324ffe2.zip op-kernel-dev-bd76ed36bac50b5402fd09c3fc2f368ef324ffe2.tar.gz |
net: Include appropriate header file in netfilter/nft_lookup.c
Include appropriate header file net/netfilter/nf_tables_core.h in
net/netfilter/nft_lookup.c because it has prototype declaration of
functions defined in net/netfilter/nft_lookup.c.
This eliminates the following warning in net/netfilter/nft_lookup.c:
net/netfilter/nft_lookup.c:133:12: warning: no previous prototype for ‘nft_lookup_module_init’ [-Wmissing-prototypes]
net/netfilter/nft_lookup.c:138:6: warning: no previous prototype for ‘nft_lookup_module_exit’ [-Wmissing-prototypes]
Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nft_lookup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/nft_lookup.c b/net/netfilter/nft_lookup.c index 8a6116b..bb4ef4c 100644 --- a/net/netfilter/nft_lookup.c +++ b/net/netfilter/nft_lookup.c @@ -16,6 +16,7 @@ #include <linux/netfilter.h> #include <linux/netfilter/nf_tables.h> #include <net/netfilter/nf_tables.h> +#include <net/netfilter/nf_tables_core.h> struct nft_lookup { struct nft_set *set; |