Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338527
b: refs/heads/master
c: c05c946
h: refs/heads/master
i:
  338525: ffca000
  338523: 6f6daaa
  338519: d6fc715
  338511: a85d032
  338495: b0d8ecd
v: v3
  • Loading branch information
Thomas Abraham authored and Greg Kroah-Hartman committed Oct 24, 2012
1 parent e2db5a3 commit 164f62f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e1deb56cb775ab953bc5245feaf1f43269409139
refs/heads/master: c05c946c68e381074dde259d8ce243da1b1aae02
10 changes: 5 additions & 5 deletions trunk/drivers/usb/host/ohci-exynos.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ static int __devinit exynos_ohci_probe(struct platform_device *pdev)
goto fail_clk;
}

err = clk_enable(exynos_ohci->clk);
err = clk_prepare_enable(exynos_ohci->clk);
if (err)
goto fail_clken;

Expand Down Expand Up @@ -167,7 +167,7 @@ static int __devinit exynos_ohci_probe(struct platform_device *pdev)
return 0;

fail_io:
clk_disable(exynos_ohci->clk);
clk_disable_unprepare(exynos_ohci->clk);
fail_clken:
clk_put(exynos_ohci->clk);
fail_clk:
Expand All @@ -186,7 +186,7 @@ static int __devexit exynos_ohci_remove(struct platform_device *pdev)
if (pdata && pdata->phy_exit)
pdata->phy_exit(pdev, S5P_USB_PHY_HOST);

clk_disable(exynos_ohci->clk);
clk_disable_unprepare(exynos_ohci->clk);
clk_put(exynos_ohci->clk);

usb_put_hcd(hcd);
Expand Down Expand Up @@ -232,7 +232,7 @@ static int exynos_ohci_suspend(struct device *dev)
if (pdata && pdata->phy_exit)
pdata->phy_exit(pdev, S5P_USB_PHY_HOST);

clk_disable(exynos_ohci->clk);
clk_disable_unprepare(exynos_ohci->clk);

fail:
spin_unlock_irqrestore(&ohci->lock, flags);
Expand All @@ -247,7 +247,7 @@ static int exynos_ohci_resume(struct device *dev)
struct platform_device *pdev = to_platform_device(dev);
struct exynos4_ohci_platdata *pdata = pdev->dev.platform_data;

clk_enable(exynos_ohci->clk);
clk_prepare_enable(exynos_ohci->clk);

if (pdata && pdata->phy_init)
pdata->phy_init(pdev, S5P_USB_PHY_HOST);
Expand Down

0 comments on commit 164f62f

Please sign in to comment.