aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge
diff options
context:
space:
mode:
authorBernhard Thaler <bernhard.thaler@wvnet.at>2015-07-30 00:06:12 -0400
committerPablo Neira Ayuso <pablo@netfilter.org>2015-07-30 07:46:04 -0400
commitf4b3eee727e876d625cfe3585af48f4983c435d7 (patch)
tree8da8c409628d932dec44221c844e7b1bce195d2f /net/bridge
parent72b1e5e4cac72efa6b739b47e41f53e4520b4194 (diff)
netfilter: bridge: do not initialize statics to 0 or NULL
Fix checkpatch.pl "ERROR: do not initialise statics to 0 or NULL" for all statics explicitly initialized to 0. Signed-off-by: Bernhard Thaler <bernhard.thaler@wvnet.at> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/br_netfilter_hooks.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bridge/br_netfilter_hooks.c b/net/bridge/br_netfilter_hooks.c
index ec51c2ba30e9..0a6f095bb0c9 100644
--- a/net/bridge/br_netfilter_hooks.c
+++ b/net/bridge/br_netfilter_hooks.c
@@ -49,9 +49,9 @@ static struct ctl_table_header *brnf_sysctl_header;
49static int brnf_call_iptables __read_mostly = 1; 49static int brnf_call_iptables __read_mostly = 1;
50static int brnf_call_ip6tables __read_mostly = 1; 50static int brnf_call_ip6tables __read_mostly = 1;
51static int brnf_call_arptables __read_mostly = 1; 51static int brnf_call_arptables __read_mostly = 1;
52static int brnf_filter_vlan_tagged __read_mostly = 0; 52static int brnf_filter_vlan_tagged __read_mostly;
53static int brnf_filter_pppoe_tagged __read_mostly = 0; 53static int brnf_filter_pppoe_tagged __read_mostly;
54static int brnf_pass_vlan_indev __read_mostly = 0; 54static int brnf_pass_vlan_indev __read_mostly;
55#else 55#else
56#define brnf_call_iptables 1 56#define brnf_call_iptables 1
57#define brnf_call_ip6tables 1 57#define brnf_call_ip6tables 1