diff options
author | stephen hemminger <shemminger@vyatta.com> | 2011-07-22 07:47:10 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-22 17:01:13 -0700 |
commit | 160d73b8455edb1a12967e207790b1a93a4cb0e1 (patch) | |
tree | adba1755432a81fd4d258ecdeb2207d94e36be03 /net/bridge/br_stp_bpdu.c | |
parent | 4ecb961c8b474ebef5aff55f715c7875e69dd57b (diff) |
bridge: minor cleanups
Some minor cleanups that won't impact code:
1. Remove inline from non-critical functions; compiler will most
likely inline them anyway.
2. Make function args const where possible.
3. Whitespace cleanup
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_stp_bpdu.c')
-rw-r--r-- | net/bridge/br_stp_bpdu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/bridge/br_stp_bpdu.c b/net/bridge/br_stp_bpdu.c index b69232b3718..e16aade51ae 100644 --- a/net/bridge/br_stp_bpdu.c +++ b/net/bridge/br_stp_bpdu.c @@ -222,9 +222,7 @@ void br_stp_rcv(const struct stp_proto *proto, struct sk_buff *skb, } br_received_config_bpdu(p, &bpdu); - } - - else if (buf[0] == BPDU_TYPE_TCN) { + } else if (buf[0] == BPDU_TYPE_TCN) { br_received_tcn_bpdu(p); } out: |