[PATCH net-next 2/2] net: stmmac: dwc-qos: use stmmac_pltfr_find_clk()

Lad, Prabhakar prabhakar.csengg at gmail.com
Mon Apr 7 12:33:50 PDT 2025


On Mon, Apr 7, 2025 at 7:39 PM Russell King (Oracle)
<rmk+kernel at armlinux.org.uk> wrote:
>
> Signed-off-by: Russell King (Oracle) <rmk+kernel at armlinux.org.uk>
> ---
>  .../ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c    | 14 ++------------
>  1 file changed, 2 insertions(+), 12 deletions(-)
>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj at bp.renesas.com>

Cheers,
Prabhakar

> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
> index cd431f84f34f..f5c68e3b4354 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
> @@ -34,16 +34,6 @@ struct tegra_eqos {
>         struct gpio_desc *reset;
>  };
>
> -static struct clk *dwc_eth_find_clk(struct plat_stmmacenet_data *plat_dat,
> -                                   const char *name)
> -{
> -       for (int i = 0; i < plat_dat->num_clks; i++)
> -               if (strcmp(plat_dat->clks[i].id, name) == 0)
> -                       return plat_dat->clks[i].clk;
> -
> -       return NULL;
> -}
> -
>  static int dwc_eth_dwmac_config_dt(struct platform_device *pdev,
>                                    struct plat_stmmacenet_data *plat_dat)
>  {
> @@ -132,7 +122,7 @@ static int dwc_qos_probe(struct platform_device *pdev,
>                          struct plat_stmmacenet_data *plat_dat,
>                          struct stmmac_resources *stmmac_res)
>  {
> -       plat_dat->pclk = dwc_eth_find_clk(plat_dat, "phy_ref_clk");
> +       plat_dat->pclk = stmmac_pltfr_find_clk(plat_dat, "phy_ref_clk");
>
>         return 0;
>  }
> @@ -242,7 +232,7 @@ static int tegra_eqos_probe(struct platform_device *pdev,
>         if (!is_of_node(dev->fwnode))
>                 goto bypass_clk_reset_gpio;
>
> -       plat_dat->clk_tx_i = dwc_eth_find_clk(plat_dat, "tx");
> +       plat_dat->clk_tx_i = stmmac_pltfr_find_clk(plat_dat, "tx");
>
>         eqos->reset = devm_gpiod_get(&pdev->dev, "phy-reset", GPIOD_OUT_HIGH);
>         if (IS_ERR(eqos->reset)) {
> --
> 2.30.2
>



More information about the linux-arm-kernel mailing list