Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364719
b: refs/heads/master
c: ddb5147
h: refs/heads/master
i:
  364717: 2f05ce4
  364715: 530125b
  364711: 4565663
  364703: cd0b2b1
v: v3
  • Loading branch information
Vivek Gautam authored and Felipe Balbi committed Mar 18, 2013
1 parent 628af33 commit d6525ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: adcf20dcd2629112c467f30a2c057479979ae64c
refs/heads/master: ddb5147cea10308fac7d4ea44cbd164929199e03
6 changes: 3 additions & 3 deletions trunk/drivers/usb/dwc3/dwc3-exynos.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static int dwc3_exynos_probe(struct platform_device *pdev)
exynos->dev = dev;
exynos->clk = clk;

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

if (node) {
ret = of_platform_populate(node, NULL, NULL, dev);
Expand All @@ -155,7 +155,7 @@ static int dwc3_exynos_probe(struct platform_device *pdev)
return 0;

err2:
clk_disable(clk);
clk_disable_unprepare(clk);
err1:
return ret;
}
Expand All @@ -168,7 +168,7 @@ static int dwc3_exynos_remove(struct platform_device *pdev)
platform_device_unregister(exynos->usb3_phy);
device_for_each_child(&pdev->dev, NULL, dwc3_exynos_remove_child);

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

return 0;
}
Expand Down

0 comments on commit d6525ab

Please sign in to comment.