Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338526
b: refs/heads/master
c: e1deb56
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Abraham authored and Greg Kroah-Hartman committed Oct 24, 2012
1 parent ffca000 commit e2db5a3
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: ffc7493df73cf0e3d2c6719f3794696dbc3929a9
refs/heads/master: e1deb56cb775ab953bc5245feaf1f43269409139
10 changes: 5 additions & 5 deletions trunk/drivers/usb/host/ehci-s5p.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ static int __devinit s5p_ehci_probe(struct platform_device *pdev)
goto fail_clk;
}

err = clk_enable(s5p_ehci->clk);
err = clk_prepare_enable(s5p_ehci->clk);
if (err)
goto fail_clk;

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

fail_io:
clk_disable(s5p_ehci->clk);
clk_disable_unprepare(s5p_ehci->clk);
fail_clk:
usb_put_hcd(hcd);
return err;
Expand All @@ -200,7 +200,7 @@ static int __devexit s5p_ehci_remove(struct platform_device *pdev)
if (pdata && pdata->phy_exit)
pdata->phy_exit(pdev, S5P_USB_PHY_HOST);

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

usb_put_hcd(hcd);

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

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

return rc;
}
Expand All @@ -243,7 +243,7 @@ static int s5p_ehci_resume(struct device *dev)
struct platform_device *pdev = to_platform_device(dev);
struct s5p_ehci_platdata *pdata = pdev->dev.platform_data;

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

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

0 comments on commit e2db5a3

Please sign in to comment.