mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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>
This commit is contained in:
parent
72b1e5e4ca
commit
f4b3eee727
1 changed files with 3 additions and 3 deletions
|
@ -49,9 +49,9 @@ static struct ctl_table_header *brnf_sysctl_header;
|
|||
static int brnf_call_iptables __read_mostly = 1;
|
||||
static int brnf_call_ip6tables __read_mostly = 1;
|
||||
static int brnf_call_arptables __read_mostly = 1;
|
||||
static int brnf_filter_vlan_tagged __read_mostly = 0;
|
||||
static int brnf_filter_pppoe_tagged __read_mostly = 0;
|
||||
static int brnf_pass_vlan_indev __read_mostly = 0;
|
||||
static int brnf_filter_vlan_tagged __read_mostly;
|
||||
static int brnf_filter_pppoe_tagged __read_mostly;
|
||||
static int brnf_pass_vlan_indev __read_mostly;
|
||||
#else
|
||||
#define brnf_call_iptables 1
|
||||
#define brnf_call_ip6tables 1
|
||||
|
|
Loading…
Reference in a new issue