mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
net: phy: teranetics: 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
2ea350c466
commit
787a67f471
3 changed files with 1 additions and 12 deletions
|
@ -514,9 +514,6 @@ int phy_init(void)
|
|||
phy_drv_reloc(drv);
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_PHY_TERANETICS
|
||||
phy_teranetics_init();
|
||||
#endif
|
||||
#ifdef CONFIG_PHY_TI
|
||||
phy_ti_init();
|
||||
#endif
|
||||
|
|
|
@ -90,7 +90,7 @@ int tn2020_startup(struct phy_device *phydev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static struct phy_driver tn2020_driver = {
|
||||
U_BOOT_PHY_DRIVER(tn2020) = {
|
||||
.name = "Teranetics TN2020",
|
||||
.uid = PHY_UID_TN2020,
|
||||
.mask = 0xfffffff0,
|
||||
|
@ -102,10 +102,3 @@ static struct phy_driver tn2020_driver = {
|
|||
.startup = &tn2020_startup,
|
||||
.shutdown = &gen10g_shutdown,
|
||||
};
|
||||
|
||||
int phy_teranetics_init(void)
|
||||
{
|
||||
phy_register(&tn2020_driver);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -315,7 +315,6 @@ int gen10g_startup(struct phy_device *phydev);
|
|||
int gen10g_shutdown(struct phy_device *phydev);
|
||||
int gen10g_discover_mmds(struct phy_device *phydev);
|
||||
|
||||
int phy_teranetics_init(void);
|
||||
int phy_ti_init(void);
|
||||
int phy_vitesse_init(void);
|
||||
int phy_xilinx_init(void);
|
||||
|
|
Loading…
Reference in a new issue