diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2020-02-26 13:23:46 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-02-27 23:02:14 +0300 |
commit | 5b502a7b2992008a1fd5962ba032771b03c4e840 (patch) | |
tree | 7d135db5835c363e3b3d199a156506985c174ea4 /drivers/net/dsa/lantiq_gswip.c | |
parent | 91a208f2185ad4855ff03c342d0b7e4f5fc6f5df (diff) | |
download | linux-5b502a7b2992008a1fd5962ba032771b03c4e840.tar.xz |
net: dsa: propagate resolved link config via mac_link_up()
Propagate the resolved link configuration down via DSA's
phylink_mac_link_up() operation to allow split PCS/MAC to work.
Tested-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/lantiq_gswip.c')
-rw-r--r-- | drivers/net/dsa/lantiq_gswip.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/dsa/lantiq_gswip.c b/drivers/net/dsa/lantiq_gswip.c index 0369c22fe3e1..cf6fa8fede33 100644 --- a/drivers/net/dsa/lantiq_gswip.c +++ b/drivers/net/dsa/lantiq_gswip.c @@ -1517,7 +1517,9 @@ static void gswip_phylink_mac_link_down(struct dsa_switch *ds, int port, static void gswip_phylink_mac_link_up(struct dsa_switch *ds, int port, unsigned int mode, phy_interface_t interface, - struct phy_device *phydev) + struct phy_device *phydev, + int speed, int duplex, + bool tx_pause, bool rx_pause) { struct gswip_priv *priv = ds->priv; |