diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-03-11 09:41:34 +0800 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2015-03-13 17:14:39 +0530 |
commit | b1ff3231b2d4197ef5024f9c57ffc6cfa562590c (patch) | |
tree | 2b6a9617b2b11c293ec5a506a405f55459ea63ad | |
parent | dd64ad387cc0528416037982a60f0b90acccce42 (diff) | |
download | op-kernel-dev-b1ff3231b2d4197ef5024f9c57ffc6cfa562590c.zip op-kernel-dev-b1ff3231b2d4197ef5024f9c57ffc6cfa562590c.tar.gz |
phy: omap-usb2: Fix missing clk_prepare call when using old dt name
Current code does not call clk_prepare(phy->optclk) when using the old
usb_otg_ss_refclk960m name. Fix it.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
-rw-r--r-- | drivers/phy/phy-omap-usb2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/phy/phy-omap-usb2.c b/drivers/phy/phy-omap-usb2.c index c4917b2..4757e76 100644 --- a/drivers/phy/phy-omap-usb2.c +++ b/drivers/phy/phy-omap-usb2.c @@ -296,10 +296,11 @@ static int omap_usb2_probe(struct platform_device *pdev) dev_warn(&pdev->dev, "found usb_otg_ss_refclk960m, please fix DTS\n"); } - } else { - clk_prepare(phy->optclk); } + if (!IS_ERR(phy->optclk)) + clk_prepare(phy->optclk); + usb_add_phy_dev(&phy->phy); return 0; |