Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303557
b: refs/heads/master
c: 15c9d50
h: refs/heads/master
i:
  303555: 47d6d9c
v: v3
  • Loading branch information
Viresh Kumar authored and Greg Kroah-Hartman committed Apr 18, 2012
1 parent a8884dc commit d64d19d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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: 72b27a07efe8c7d63bc117d63e2b584a26d97e7c
refs/heads/master: 15c9d50bbb4f754c02493fa880658d6bd5b5c27d
4 changes: 2 additions & 2 deletions trunk/drivers/usb/host/ehci-spear.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ struct spear_ehci {

static void spear_start_ehci(struct spear_ehci *ehci)
{
clk_enable(ehci->clk);
clk_prepare_enable(ehci->clk);
}

static void spear_stop_ehci(struct spear_ehci *ehci)
{
clk_disable(ehci->clk);
clk_disable_unprepare(ehci->clk);
}

static int ehci_spear_setup(struct usb_hcd *hcd)
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/usb/host/ohci-spear.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ struct spear_ohci {

static void spear_start_ohci(struct spear_ohci *ohci)
{
clk_enable(ohci->clk);
clk_prepare_enable(ohci->clk);
}

static void spear_stop_ohci(struct spear_ohci *ohci)
{
clk_disable(ohci->clk);
clk_disable_unprepare(ohci->clk);
}

static int __devinit ohci_spear_start(struct usb_hcd *hcd)
Expand Down

0 comments on commit d64d19d

Please sign in to comment.