]> www.infradead.org Git - users/hch/configfs.git/commitdiff
net: stmmac: dwmac-rzn1: provide select_pcs() implementation
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Thu, 13 Jun 2024 10:36:16 +0000 (11:36 +0100)
committerJakub Kicinski <kuba@kernel.org>
Sat, 15 Jun 2024 02:06:40 +0000 (19:06 -0700)
Provide a .select_pcs() implementation which returns the phylink PCS
that was created in the .pcs_init() method.

Tested-by: Romain Gantois <romain.gantois@bootlin.com>
Reviewed-by: Romain Gantois <romain.gantois@bootlin.com>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://lore.kernel.org/r/E1sHhoW-00FetH-GD@rmk-PC.armlinux.org.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/stmicro/stmmac/dwmac-rzn1.c

index 848cf3c01f4ab7c8b4ccfa144431a714f75b9e54..59a7bd560f9617fafbae3ff3ac7496aefa99f7ee 100644 (file)
@@ -39,6 +39,12 @@ static void rzn1_dwmac_pcs_exit(struct stmmac_priv *priv)
                miic_destroy(priv->hw->phylink_pcs);
 }
 
+static struct phylink_pcs *rzn1_dwmac_select_pcs(struct stmmac_priv *priv,
+                                                phy_interface_t interface)
+{
+       return priv->hw->phylink_pcs;
+}
+
 static int rzn1_dwmac_probe(struct platform_device *pdev)
 {
        struct plat_stmmacenet_data *plat_dat;
@@ -57,6 +63,7 @@ static int rzn1_dwmac_probe(struct platform_device *pdev)
        plat_dat->bsp_priv = plat_dat;
        plat_dat->pcs_init = rzn1_dwmac_pcs_init;
        plat_dat->pcs_exit = rzn1_dwmac_pcs_exit;
+       plat_dat->select_pcs = rzn1_dwmac_select_pcs;
 
        ret = stmmac_dvr_probe(dev, plat_dat, &stmmac_res);
        if (ret)