[PATCH 40/41] net: phy: Re-inline phy_drv_reloc()

Ramon Fried rfried.dev at gmail.com
Sat Apr 1 20:47:43 CEST 2023


On Sun, Mar 19, 2023 at 7:05 PM Marek Vasut
<marek.vasut+renesas at mailbox.org> wrote:
>
> Wrap phy_drv_reloc() back into phy_init() to reduce ifdeffery,
> since phy_drv_reloc() is now called only from one call site.
> No functional change.
>
> Signed-off-by: Marek Vasut <marek.vasut+renesas at mailbox.org>
> ---
> Cc: "Ariel D'Alessandro" <ariel.dalessandro at collabora.com>
> Cc: "Cédric Le Goater" <clg at kaod.org>
> Cc: "Marek Behún" <kabel at kernel.org>
> Cc: Alex Nemirovsky <alex.nemirovsky at cortina-access.com>
> Cc: Haolin Li <li.haolin at qq.com>
> Cc: Heinrich Schuchardt <xypron.glpk at gmx.de>
> Cc: Joe Hershberger <joe.hershberger at ni.com>
> Cc: Joel Stanley <joel at jms.id.au>
> Cc: Josua Mayer <josua at solid-run.com>
> Cc: Marek Vasut <marek.vasut+renesas at mailbox.org>
> Cc: Michael Trimarchi <michael at amarulasolutions.com>
> Cc: Michal Simek <michal.simek at amd.com>
> Cc: Nate Drude <nate.d at variscite.com>
> Cc: Neil Armstrong <neil.armstrong at linaro.org>
> Cc: Radu Pirea <radu-nicolae.pirea at oss.nxp.com>
> Cc: Ramon Fried <rfried.dev at gmail.com>
> Cc: Samuel Mendoza-Jonas <sam at mendozajonas.com>
> Cc: Stefan Roese <sr at denx.de>
> Cc: T Karthik Reddy <t.karthik.reddy at xilinx.com>
> Cc: Tim Harvey <tharvey at gateworks.com>
> Cc: Vladimir Oltean <vladimir.oltean at nxp.com>
> Cc: u-boot-amlogic at groups.io
> ---
>  drivers/net/phy/phy.c | 42 ++++++++++++++++++------------------------
>  1 file changed, 18 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
> index 15da9a80de2..61603f28179 100644
> --- a/drivers/net/phy/phy.c
> +++ b/drivers/net/phy/phy.c
> @@ -463,28 +463,6 @@ U_BOOT_PHY_DRIVER(genphy) = {
>         .shutdown       = genphy_shutdown,
>  };
>
> -#ifdef CONFIG_NEEDS_MANUAL_RELOC
> -static void phy_drv_reloc(struct phy_driver *drv)
> -{
> -       if (drv->probe)
> -               drv->probe += gd->reloc_off;
> -       if (drv->config)
> -               drv->config += gd->reloc_off;
> -       if (drv->startup)
> -               drv->startup += gd->reloc_off;
> -       if (drv->shutdown)
> -               drv->shutdown += gd->reloc_off;
> -       if (drv->readext)
> -               drv->readext += gd->reloc_off;
> -       if (drv->writeext)
> -               drv->writeext += gd->reloc_off;
> -       if (drv->read_mmd)
> -               drv->read_mmd += gd->reloc_off;
> -       if (drv->write_mmd)
> -               drv->write_mmd += gd->reloc_off;
> -}
> -#endif
> -
>  int phy_init(void)
>  {
>  #ifdef CONFIG_NEEDS_MANUAL_RELOC
> @@ -493,8 +471,24 @@ int phy_init(void)
>
>         /* Perform manual relocation on linker list based PHY drivers */
>         ll_entry = ll_entry_start(struct phy_driver, phy_driver);
> -       for (drv = ll_entry; drv != ll_entry + ll_n_ents; drv++)
> -               phy_drv_reloc(drv);
> +       for (drv = ll_entry; drv != ll_entry + ll_n_ents; drv++) {
> +               if (drv->probe)
> +                       drv->probe += gd->reloc_off;
> +               if (drv->config)
> +                       drv->config += gd->reloc_off;
> +               if (drv->startup)
> +                       drv->startup += gd->reloc_off;
> +               if (drv->shutdown)
> +                       drv->shutdown += gd->reloc_off;
> +               if (drv->readext)
> +                       drv->readext += gd->reloc_off;
> +               if (drv->writeext)
> +                       drv->writeext += gd->reloc_off;
> +               if (drv->read_mmd)
> +                       drv->read_mmd += gd->reloc_off;
> +               if (drv->write_mmd)
> +                       drv->write_mmd += gd->reloc_off;
> +       }
>  #endif
>
>         return 0;
> --
> 2.39.2
>
Reviewed-by: Ramon Fried <rfried.dev at gmail.com>


More information about the U-Boot mailing list