phy: rockchip: usbdp: Drop rockchip_u3phy_uboot_init()

Remove the rockchip_u3phy_uboot_init() function, it has no caller and is
not needed with proper driver model use.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
Jonas Karlman 2024-05-04 19:43:03 +00:00 committed by Kever Yang
parent 1a0bc25ccf
commit 751ccceeed

View File

@ -616,30 +616,6 @@ static const struct phy_ops rockchip_u3phy_ops = {
.exit = rockchip_u3phy_exit,
};
int rockchip_u3phy_uboot_init(void)
{
struct udevice *udev;
struct rockchip_udphy *udphy;
int ret;
ret = uclass_get_device_by_driver(UCLASS_PHY,
DM_DRIVER_GET(rockchip_udphy_u3_port),
&udev);
if (ret) {
pr_err("%s: get u3-port failed: %d\n", __func__, ret);
return ret;
}
/* DP only or high-speed, disable U3 port */
udphy = dev_get_priv(udev->parent);
if (!(udphy->mode & UDPHY_MODE_USB) || udphy->hs) {
udphy_u3_port_disable(udphy, true);
return 0;
}
return udphy_power_on(udphy, UDPHY_MODE_USB);
}
static int rockchip_udphy_probe(struct udevice *dev)
{
struct rockchip_udphy *udphy = dev_get_priv(dev);