From: Rasmus Villemoes Date: Tue, 28 Mar 2023 21:12:47 +0000 (+0200) Subject: phy: broadcom: don't duplicate genphy_startup X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=8c0ed61390533410fef275c2bc86acc5ac35fa4b;p=u-boot.git phy: broadcom: don't duplicate genphy_startup Functionally, bcm_cygnus_startup() is an exact copy of genphy_startup(). Signed-off-by: Rasmus Villemoes --- diff --git a/drivers/net/phy/broadcom.c b/drivers/net/phy/broadcom.c index ea98cfcc1b..36c70da181 100644 --- a/drivers/net/phy/broadcom.c +++ b/drivers/net/phy/broadcom.c @@ -162,18 +162,6 @@ static int bcm5482_config(struct phy_device *phydev) return 0; } -static int bcm_cygnus_startup(struct phy_device *phydev) -{ - int ret; - - /* Read the Status (2x to make sure link is right) */ - ret = genphy_update_link(phydev); - if (ret) - return ret; - - return genphy_parse_link(phydev); -} - static void bcm_cygnus_afe(struct phy_device *phydev) { /* ensures smdspclk is enabled */ @@ -359,6 +347,6 @@ U_BOOT_PHY_DRIVER(bcm_cygnus) = { .mask = 0xfffff0, .features = PHY_GBIT_FEATURES, .config = &bcm_cygnus_config, - .startup = &bcm_cygnus_startup, + .startup = &genphy_startup, .shutdown = &genphy_shutdown, };