From: Paul Gortmaker Date: Mon, 15 Apr 2019 20:43:15 +0000 (-0400) Subject: netfilter: nf_tables: fix implicit include of module.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c5f1931f66175d64cfe3db75da456622a32733d8;p=linux.git netfilter: nf_tables: fix implicit include of module.h This file clearly uses modular infrastructure but does not call out the inclusion of explicitly. We add that include explicitly here, so we can tidy up some header usage elsewhere w/o causing build breakage. Signed-off-by: Paul Gortmaker Signed-off-by: Pablo Neira Ayuso --- diff --git a/net/netfilter/nf_tables_set_core.c b/net/netfilter/nf_tables_set_core.c index 814789644bd3a..a9fce8d100515 100644 --- a/net/netfilter/nf_tables_set_core.c +++ b/net/netfilter/nf_tables_set_core.c @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ +#include #include static int __init nf_tables_set_module_init(void)