diff options
author | Felipe Balbi <balbi@ti.com> | 2014-11-06 08:28:45 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-12-04 11:04:13 -0500 |
commit | 7a294c5c0a048177d4f69b255988fdff59133ff8 (patch) | |
tree | 7d7912a84adfdb63d29c67c5a4741e6fe2a4d4a2 /drivers/usb/phy | |
parent | 113d7e88cbcd58e1e2c1792be433bd9aa3f778e3 (diff) |
usb: phy: omap_usb_phy: fix build breakage
there's no such function usb3_phy_power(),
it's likely that author meant to call,
usb_phy_power() instead, but that's already
called properly from xhci-omap.c.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/omap_usb_phy.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/phy/omap_usb_phy.c b/drivers/usb/phy/omap_usb_phy.c index f78d5329668..52a3664b99b 100644 --- a/drivers/usb/phy/omap_usb_phy.c +++ b/drivers/usb/phy/omap_usb_phy.c @@ -118,7 +118,6 @@ void usb_phy_power(int on) void omap_usb3_phy_init(struct omap_usb3_phy *phy_regs) { omap_usb_dpll_lock(phy_regs); - usb3_phy_partial_powerup(phy_regs); /* * Give enough time for the PHY to partially power-up before @@ -126,7 +125,6 @@ void omap_usb3_phy_init(struct omap_usb3_phy *phy_regs) * team. */ mdelay(100); - usb3_phy_power(1); } static void omap_enable_usb3_phy(struct omap_xhci *omap) |