mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
net: phy: vitesse: 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> Reviewed-by: Ramon Fried <rfried.dev@gmail.com> 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
5b777fe527
commit
fb5cf1bb42
3 changed files with 13 additions and 36 deletions
|
@ -514,9 +514,6 @@ int phy_init(void)
|
|||
phy_drv_reloc(drv);
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_PHY_VITESSE
|
||||
phy_vitesse_init();
|
||||
#endif
|
||||
#ifdef CONFIG_PHY_XILINX
|
||||
phy_xilinx_init();
|
||||
#endif
|
||||
|
|
|
@ -293,7 +293,7 @@ static int vsc8664_config(struct phy_device *phydev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static struct phy_driver VSC8211_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8211) = {
|
||||
.name = "Vitesse VSC8211",
|
||||
.uid = 0xfc4b0,
|
||||
.mask = 0xffff0,
|
||||
|
@ -303,7 +303,7 @@ static struct phy_driver VSC8211_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8221_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8221) = {
|
||||
.name = "Vitesse VSC8221",
|
||||
.uid = 0xfc550,
|
||||
.mask = 0xffff0,
|
||||
|
@ -313,7 +313,7 @@ static struct phy_driver VSC8221_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8244_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8244) = {
|
||||
.name = "Vitesse VSC8244",
|
||||
.uid = 0xfc6c0,
|
||||
.mask = 0xffff0,
|
||||
|
@ -323,7 +323,7 @@ static struct phy_driver VSC8244_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8234_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8234) = {
|
||||
.name = "Vitesse VSC8234",
|
||||
.uid = 0xfc620,
|
||||
.mask = 0xffff0,
|
||||
|
@ -333,7 +333,7 @@ static struct phy_driver VSC8234_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8574_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8574) = {
|
||||
.name = "Vitesse VSC8574",
|
||||
.uid = 0x704a0,
|
||||
.mask = 0xffff0,
|
||||
|
@ -343,7 +343,7 @@ static struct phy_driver VSC8574_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8514_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8514) = {
|
||||
.name = "Vitesse VSC8514",
|
||||
.uid = 0x70670,
|
||||
.mask = 0xffff0,
|
||||
|
@ -353,7 +353,7 @@ static struct phy_driver VSC8514_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8584_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8584) = {
|
||||
.name = "Vitesse VSC8584",
|
||||
.uid = 0x707c0,
|
||||
.mask = 0xffff0,
|
||||
|
@ -363,7 +363,7 @@ static struct phy_driver VSC8584_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8601_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8601) = {
|
||||
.name = "Vitesse VSC8601",
|
||||
.uid = 0x70420,
|
||||
.mask = 0xffff0,
|
||||
|
@ -373,7 +373,7 @@ static struct phy_driver VSC8601_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8641_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8641) = {
|
||||
.name = "Vitesse VSC8641",
|
||||
.uid = 0x70430,
|
||||
.mask = 0xffff0,
|
||||
|
@ -383,7 +383,7 @@ static struct phy_driver VSC8641_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8662_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8662) = {
|
||||
.name = "Vitesse VSC8662",
|
||||
.uid = 0x70660,
|
||||
.mask = 0xffff0,
|
||||
|
@ -393,7 +393,7 @@ static struct phy_driver VSC8662_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver VSC8664_driver = {
|
||||
U_BOOT_PHY_DRIVER(vsc8664) = {
|
||||
.name = "Vitesse VSC8664",
|
||||
.uid = 0x70660,
|
||||
.mask = 0xffff0,
|
||||
|
@ -404,7 +404,7 @@ static struct phy_driver VSC8664_driver = {
|
|||
};
|
||||
|
||||
/* Vitesse bought Cicada, so we'll put these here */
|
||||
static struct phy_driver cis8201_driver = {
|
||||
U_BOOT_PHY_DRIVER(cis8201) = {
|
||||
.name = "CIS8201",
|
||||
.uid = 0xfc410,
|
||||
.mask = 0xffff0,
|
||||
|
@ -414,7 +414,7 @@ static struct phy_driver cis8201_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver cis8204_driver = {
|
||||
U_BOOT_PHY_DRIVER(cis8204) = {
|
||||
.name = "Cicada Cis8204",
|
||||
.uid = 0xfc440,
|
||||
.mask = 0xffff0,
|
||||
|
@ -423,22 +423,3 @@ static struct phy_driver cis8204_driver = {
|
|||
.startup = &vitesse_startup,
|
||||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
int phy_vitesse_init(void)
|
||||
{
|
||||
phy_register(&VSC8641_driver);
|
||||
phy_register(&VSC8601_driver);
|
||||
phy_register(&VSC8234_driver);
|
||||
phy_register(&VSC8244_driver);
|
||||
phy_register(&VSC8211_driver);
|
||||
phy_register(&VSC8221_driver);
|
||||
phy_register(&VSC8574_driver);
|
||||
phy_register(&VSC8584_driver);
|
||||
phy_register(&VSC8514_driver);
|
||||
phy_register(&VSC8662_driver);
|
||||
phy_register(&VSC8664_driver);
|
||||
phy_register(&cis8201_driver);
|
||||
phy_register(&cis8204_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_vitesse_init(void);
|
||||
int phy_xilinx_init(void);
|
||||
int phy_xway_init(void);
|
||||
int phy_mscc_init(void);
|
||||
|
|
Loading…
Reference in a new issue