mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 04:36:13 +02:00
net: phy: genphy: Convert to U_BOOT_PHY_DRIVER()
Convert PHY driver to U_BOOT_PHY_DRIVER() macro and drop phy_register() init call.
Converted using sed
"s@^static struct phy_driver \(.*\)_driver = \+{@U_BOOT_PHY_DRIVER(\L\1) = {"
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Acked-by: Michal Simek <michal.simek@amd.com>
Tested-by: Michal Simek <michal.simek@amd.com> #microblaze (MANUAL_RELOC)
This commit is contained in:
parent
53ef8d79f2
commit
f7053296cb
@ -451,7 +451,7 @@ int genphy_shutdown(struct phy_device *phydev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct phy_driver genphy_driver = {
|
||||
U_BOOT_PHY_DRIVER(genphy) = {
|
||||
.uid = 0xffffffff,
|
||||
.mask = 0xffffffff,
|
||||
.name = "Generic PHY",
|
||||
@ -463,11 +463,6 @@ static struct phy_driver genphy_driver = {
|
||||
.shutdown = genphy_shutdown,
|
||||
};
|
||||
|
||||
static int genphy_init(void)
|
||||
{
|
||||
return phy_register(&genphy_driver);
|
||||
}
|
||||
|
||||
static LIST_HEAD(phy_drivers);
|
||||
|
||||
#ifdef CONFIG_NEEDS_MANUAL_RELOC
|
||||
@ -514,8 +509,6 @@ int phy_init(void)
|
||||
phy_drv_reloc(drv);
|
||||
#endif
|
||||
|
||||
genphy_init();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -576,7 +569,7 @@ static struct phy_driver *generic_for_phy(struct phy_device *phydev)
|
||||
return &gen10g_driver;
|
||||
#endif
|
||||
|
||||
return &genphy_driver;
|
||||
return ll_entry_get(struct phy_driver, genphy, phy_driver);
|
||||
}
|
||||
|
||||
static struct phy_driver *get_phy_driver(struct phy_device *phydev)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user