diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2013-01-24 21:33:26 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-01-25 06:03:10 -0500 |
commit | b16604f2c1dc3f0a326818b282e6bb5f363f725e (patch) | |
tree | f4127dba7940d755db221e267e1d53a0b491fa02 /drivers/usb/musb/omap2430.c | |
parent | c11747f6ce70253dbf73709bb0a5ff19acc48ec8 (diff) |
usb: musb: omap: get phy by phandle for dt boot
The OMAP glue has been modified to get PHY by phandle
for dt boot.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb/omap2430.c')
-rw-r--r-- | drivers/usb/musb/omap2430.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 23df9d7c99f6..d100360eab7a 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c | |||
@@ -345,7 +345,12 @@ static int omap2430_musb_init(struct musb *musb) | |||
345 | * up through ULPI. TWL4030-family PMICs include one, | 345 | * up through ULPI. TWL4030-family PMICs include one, |
346 | * which needs a driver, drivers aren't always needed. | 346 | * which needs a driver, drivers aren't always needed. |
347 | */ | 347 | */ |
348 | musb->xceiv = devm_usb_get_phy_dev(dev, 0); | 348 | if (dev->parent->of_node) |
349 | musb->xceiv = devm_usb_get_phy_by_phandle(dev->parent, | ||
350 | "usb-phy", 0); | ||
351 | else | ||
352 | musb->xceiv = devm_usb_get_phy_dev(dev, 0); | ||
353 | |||
349 | if (IS_ERR_OR_NULL(musb->xceiv)) { | 354 | if (IS_ERR_OR_NULL(musb->xceiv)) { |
350 | pr_err("HS USB OTG: no transceiver configured\n"); | 355 | pr_err("HS USB OTG: no transceiver configured\n"); |
351 | return -ENODEV; | 356 | return -ENODEV; |