Commit 1c1cb6d0 authored by Nikolay Aleksandrov's avatar Nikolay Aleksandrov Committed by David S. Miller

net: bridge: make struct opening bracket consistent

Currently we have a mix of opening brackets on new lines and on the same
line, let's move them all on the same line.
Signed-off-by: default avatarNikolay Aleksandrov <nikolay@cumulusnetworks.com>
Reviewed-by: default avatarStephen Hemminger <stephen@networkplumber.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 37ac5db6
...@@ -54,14 +54,12 @@ typedef struct bridge_id bridge_id; ...@@ -54,14 +54,12 @@ typedef struct bridge_id bridge_id;
typedef struct mac_addr mac_addr; typedef struct mac_addr mac_addr;
typedef __u16 port_id; typedef __u16 port_id;
struct bridge_id struct bridge_id {
{
unsigned char prio[2]; unsigned char prio[2];
unsigned char addr[ETH_ALEN]; unsigned char addr[ETH_ALEN];
}; };
struct mac_addr struct mac_addr {
{
unsigned char addr[ETH_ALEN]; unsigned char addr[ETH_ALEN];
}; };
...@@ -207,8 +205,7 @@ struct net_bridge_port_group { ...@@ -207,8 +205,7 @@ struct net_bridge_port_group {
unsigned char eth_addr[ETH_ALEN]; unsigned char eth_addr[ETH_ALEN];
}; };
struct net_bridge_mdb_entry struct net_bridge_mdb_entry {
{
struct hlist_node hlist[2]; struct hlist_node hlist[2];
struct net_bridge *br; struct net_bridge *br;
struct net_bridge_port_group __rcu *ports; struct net_bridge_port_group __rcu *ports;
...@@ -218,8 +215,7 @@ struct net_bridge_mdb_entry ...@@ -218,8 +215,7 @@ struct net_bridge_mdb_entry
bool host_joined; bool host_joined;
}; };
struct net_bridge_mdb_htable struct net_bridge_mdb_htable {
{
struct hlist_head *mhash; struct hlist_head *mhash;
struct rcu_head rcu; struct rcu_head rcu;
struct net_bridge_mdb_htable *old; struct net_bridge_mdb_htable *old;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment