diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2017-09-22 19:01:56 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-25 20:22:46 -0700 |
commit | fb8a6a2b8b7cfee8a0cf2cd431e1d0f45dd1c9e0 (patch) | |
tree | 0668bc999f2cc8a159fe82d285377601ec66374a /net/dsa/dsa_priv.h | |
parent | 6457edfe7344ac1da334b9f24a42aacea084a451 (diff) | |
download | linux-fb8a6a2b8b7cfee8a0cf2cd431e1d0f45dd1c9e0.tar.bz2 |
net: dsa: add port enable and disable helpers
Provide dsa_port_enable and dsa_port_disable helpers to respectively
enable and disable a switch port. This makes the dsa_port_set_state_now
helper static.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/dsa_priv.h')
-rw-r--r-- | net/dsa/dsa_priv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/dsa/dsa_priv.h b/net/dsa/dsa_priv.h index 9803952a5b40..0298a0f6a349 100644 --- a/net/dsa/dsa_priv.h +++ b/net/dsa/dsa_priv.h @@ -117,7 +117,8 @@ void dsa_master_ethtool_restore(struct net_device *dev); /* port.c */ int dsa_port_set_state(struct dsa_port *dp, u8 state, struct switchdev_trans *trans); -void dsa_port_set_state_now(struct dsa_port *dp, u8 state); +int dsa_port_enable(struct dsa_port *dp, struct phy_device *phy); +void dsa_port_disable(struct dsa_port *dp, struct phy_device *phy); int dsa_port_bridge_join(struct dsa_port *dp, struct net_device *br); void dsa_port_bridge_leave(struct dsa_port *dp, struct net_device *br); int dsa_port_vlan_filtering(struct dsa_port *dp, bool vlan_filtering, |