Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348665
b: refs/heads/master
c: e887786
h: refs/heads/master
i:
  348663: ea69664
v: v3
  • Loading branch information
Chao Xie authored and Felipe Balbi committed Dec 13, 2012
1 parent f69a806 commit 7be465f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: b33d74db39aae32e7d57265e25c94a488c42e37b
refs/heads/master: e887786a466f36720fde5d4a1bc3c7dacd400bd1
4 changes: 2 additions & 2 deletions trunk/drivers/usb/gadget/mv_udc_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1012,15 +1012,15 @@ static void udc_clock_enable(struct mv_udc *udc)
unsigned int i;

for (i = 0; i < udc->clknum; i++)
clk_enable(udc->clk[i]);
clk_prepare_enable(udc->clk[i]);
}

static void udc_clock_disable(struct mv_udc *udc)
{
unsigned int i;

for (i = 0; i < udc->clknum; i++)
clk_disable(udc->clk[i]);
clk_disable_unprepare(udc->clk[i]);
}

static void udc_stop(struct mv_udc *udc)
Expand Down

0 comments on commit 7be465f

Please sign in to comment.