Commit 41414c9b authored by Horatiu Vultur's avatar Horatiu Vultur Committed by Jakub Kicinski

net: lan966x: use .mac_select_pcs() interface

Convert lan966x to use the mac_select_interface instead of
phylink_set_pcs.
Signed-off-by: default avatarHoratiu Vultur <horatiu.vultur@microchip.com>
Reviewed-by: default avatarRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://lore.kernel.org/r/20220202114949.833075-1-horatiu.vultur@microchip.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 95eb6ef8
...@@ -688,7 +688,6 @@ static int lan966x_probe_port(struct lan966x *lan966x, u32 p, ...@@ -688,7 +688,6 @@ static int lan966x_probe_port(struct lan966x *lan966x, u32 p,
} }
port->phylink = phylink; port->phylink = phylink;
phylink_set_pcs(phylink, &port->phylink_pcs);
err = register_netdev(dev); err = register_netdev(dev);
if (err) { if (err) {
......
...@@ -9,6 +9,14 @@ ...@@ -9,6 +9,14 @@
#include "lan966x_main.h" #include "lan966x_main.h"
static struct phylink_pcs *lan966x_phylink_mac_select(struct phylink_config *config,
phy_interface_t interface)
{
struct lan966x_port *port = netdev_priv(to_net_dev(config->dev));
return &port->phylink_pcs;
}
static void lan966x_phylink_mac_config(struct phylink_config *config, static void lan966x_phylink_mac_config(struct phylink_config *config,
unsigned int mode, unsigned int mode,
const struct phylink_link_state *state) const struct phylink_link_state *state)
...@@ -114,6 +122,7 @@ static void lan966x_pcs_aneg_restart(struct phylink_pcs *pcs) ...@@ -114,6 +122,7 @@ static void lan966x_pcs_aneg_restart(struct phylink_pcs *pcs)
const struct phylink_mac_ops lan966x_phylink_mac_ops = { const struct phylink_mac_ops lan966x_phylink_mac_ops = {
.validate = phylink_generic_validate, .validate = phylink_generic_validate,
.mac_select_pcs = lan966x_phylink_mac_select,
.mac_config = lan966x_phylink_mac_config, .mac_config = lan966x_phylink_mac_config,
.mac_prepare = lan966x_phylink_mac_prepare, .mac_prepare = lan966x_phylink_mac_prepare,
.mac_link_down = lan966x_phylink_mac_link_down, .mac_link_down = lan966x_phylink_mac_link_down,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment