summaryrefslogtreecommitdiffstats
path: root/net/dsa/dsa_priv.h
diff options
context:
space:
mode:
authorVivien Didelot2017-09-23 01:01:56 +0200
committerDavid S. Miller2017-09-26 05:22:46 +0200
commitfb8a6a2b8b7cfee8a0cf2cd431e1d0f45dd1c9e0 (patch)
tree0668bc999f2cc8a159fe82d285377601ec66374a /net/dsa/dsa_priv.h
parentnet: dsa: make slave close symmetrical to open (diff)
downloadkernel-qcow2-linux-fb8a6a2b8b7cfee8a0cf2cd431e1d0f45dd1c9e0.tar.gz
kernel-qcow2-linux-fb8a6a2b8b7cfee8a0cf2cd431e1d0f45dd1c9e0.tar.xz
kernel-qcow2-linux-fb8a6a2b8b7cfee8a0cf2cd431e1d0f45dd1c9e0.zip
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.h3
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,