summaryrefslogtreecommitdiff
path: root/net/bridge/netfilter/ebtable_broute.c
diff options
context:
space:
mode:
authortanxiaojun <tanxiaojun@huawei.com>2013-12-19 05:28:14 (GMT)
committerDavid S. Miller <davem@davemloft.net>2013-12-20 00:27:26 (GMT)
commit97ad8b53e6495a25cbc4d10c0a407c7db1ceeea6 (patch)
tree09ff43c85794f466b2c5868a611613088fb68a23 /net/bridge/netfilter/ebtable_broute.c
parent56b148eb94e79c77e20440d9b2ce00de036aece1 (diff)
downloadlinux-97ad8b53e6495a25cbc4d10c0a407c7db1ceeea6.tar.xz
bridge: change the position of '{' to the pre line
That open brace { should be on the previous line. Signed-off-by: Tan Xiaojun <tanxiaojun@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/netfilter/ebtable_broute.c')
-rw-r--r--net/bridge/netfilter/ebtable_broute.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/bridge/netfilter/ebtable_broute.c b/net/bridge/netfilter/ebtable_broute.c
index dbd1c78..d2cdf5d6 100644
--- a/net/bridge/netfilter/ebtable_broute.c
+++ b/net/bridge/netfilter/ebtable_broute.c
@@ -23,8 +23,7 @@ static struct ebt_entries initial_chain = {
.policy = EBT_ACCEPT,
};
-static struct ebt_replace_kernel initial_table =
-{
+static struct ebt_replace_kernel initial_table = {
.name = "broute",
.valid_hooks = 1 << NF_BR_BROUTING,
.entries_size = sizeof(struct ebt_entries),
@@ -41,8 +40,7 @@ static int check(const struct ebt_table_info *info, unsigned int valid_hooks)
return 0;
}
-static const struct ebt_table broute_table =
-{
+static const struct ebt_table broute_table = {
.name = "broute",
.table = &initial_table,
.valid_hooks = 1 << NF_BR_BROUTING,