]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: dsa: remove dsa_port_is_bridged
authorVivien Didelot <vivien.didelot@savoirfairelinux.com>
Fri, 26 May 2017 22:12:42 +0000 (18:12 -0400)
committerDavid S. Miller <davem@davemloft.net>
Tue, 30 May 2017 22:13:41 +0000 (18:13 -0400)
The helper is only used once and makes the code more complicated that it
should. Remove it and reorganize the variables so that it fits on 80
columns.

Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dsa/slave.c

index 887e2669551930701a9ac98d3bb2229595006e6e..0442b6bf52fa1cb79254c3850a06fd5635d66bba 100644 (file)
@@ -69,18 +69,13 @@ static int dsa_slave_get_iflink(const struct net_device *dev)
        return p->dp->ds->dst->master_netdev->ifindex;
 }
 
-static inline bool dsa_port_is_bridged(struct dsa_port *dp)
-{
-       return !!dp->bridge_dev;
-}
-
 static int dsa_slave_open(struct net_device *dev)
 {
        struct dsa_slave_priv *p = netdev_priv(dev);
-       struct net_device *master = p->dp->ds->dst->master_netdev;
-       struct dsa_switch *ds = p->dp->ds;
-       u8 stp_state = dsa_port_is_bridged(p->dp) ?
-                       BR_STATE_BLOCKING : BR_STATE_FORWARDING;
+       struct dsa_port *dp = p->dp;
+       struct dsa_switch *ds = dp->ds;
+       struct net_device *master = ds->dst->master_netdev;
+       u8 stp_state = dp->bridge_dev ? BR_STATE_BLOCKING : BR_STATE_FORWARDING;
        int err;
 
        if (!(master->flags & IFF_UP))