]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: phy: Remove unused NEEDS_MANUAL_RELOC code bits
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Wed, 6 Sep 2023 21:30:09 +0000 (23:30 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 14 Sep 2023 14:42:25 +0000 (10:42 -0400)
The last user of the NEEDS_MANUAL_RELOC has been removed in commit
26af162ac8f8 ("arch: m68k: Implement relocation")
Remove now unused NEEDS_MANUAL_RELOC code.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
drivers/net/phy/phy.c
include/phy.h
net/eth_common.c

index ae21acb059b6c6549827e7d025ec32ee68ca0e6c..d50fd505e515aed85db1f323b6a1bec3b0d0d77e 100644 (file)
@@ -463,37 +463,6 @@ U_BOOT_PHY_DRIVER(genphy) = {
        .shutdown       = genphy_shutdown,
 };
 
-#ifdef CONFIG_NEEDS_MANUAL_RELOC
-int phy_init(void)
-{
-       const int ll_n_ents = ll_entry_count(struct phy_driver, phy_driver);
-       struct phy_driver *drv, *ll_entry;
-
-       /* 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++) {
-               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;
-       }
-
-       return 0;
-}
-#endif
-
 int phy_set_supported(struct phy_device *phydev, u32 max_speed)
 {
        /* The default values for phydev->supported are provided by the PHY
index f023a3c26852fd8fdf448a2c70e0013e68d52c6e..27effdb57633af979e91b6d9fb2e83b14957d277 100644 (file)
@@ -171,14 +171,6 @@ struct fixed_link {
        int asym_pause;
 };
 
-/**
- * phy_init() - Initializes the PHY drivers
- * This function registers all available PHY drivers
- *
- * @return: 0 if OK, -ve on error
- */
-int phy_init(void);
-
 /**
  * phy_reset() - Resets the specified PHY
  * Issues a reset of the PHY and waits for it to complete
index c94a7ba6ae7ae2a1a277653d43030c18023d1bd7..14d4c07b695d5d68076eafc146b4b0a0fd710bf3 100644 (file)
@@ -36,10 +36,6 @@ void eth_common_init(void)
 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) || defined(CONFIG_PHYLIB)
        miiphy_init();
 #endif
-
-#if defined(CONFIG_NEEDS_MANUAL_RELOC) && defined(CONFIG_PHYLIB)
-       phy_init();
-#endif
 #endif
 }