Message ID | E1mmvP9-0078fX-7x@rmk-PC.armlinux.org.uk (mailing list archive) |
---|---|
State | Accepted |
Commit | 8ea8c5b492d4e593c64d71c986c320faade69e17 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: ocelot_net: phylink validate implementation updates | expand |
diff --git a/drivers/net/ethernet/mscc/ocelot_net.c b/drivers/net/ethernet/mscc/ocelot_net.c index eaeba60b1bba..37c158df60ce 100644 --- a/drivers/net/ethernet/mscc/ocelot_net.c +++ b/drivers/net/ethernet/mscc/ocelot_net.c @@ -1655,6 +1655,9 @@ static int ocelot_port_phylink_create(struct ocelot *ocelot, int port, priv->phylink_config.dev = &priv->dev->dev; priv->phylink_config.type = PHYLINK_NETDEV; + __set_bit(ocelot_port->phy_mode, + priv->phylink_config.supported_interfaces); + phylink = phylink_create(&priv->phylink_config, of_fwnode_handle(portnp), phy_mode, &ocelot_phylink_ops);
Populate the phy interface mode bitmap for the MSCC Ocelot driver with the interface modes supported by the MAC. Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> --- drivers/net/ethernet/mscc/ocelot_net.c | 3 +++ 1 file changed, 3 insertions(+)