Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348670
b: refs/heads/master
c: e3f1dbd
h: refs/heads/master
v: v3
  • Loading branch information
Chao Xie authored and Felipe Balbi committed Dec 13, 2012
1 parent 57a9ae9 commit 7259135
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: e0b64ce6fe0a9d4ce8cf97fea7fe5ec7125dea30
refs/heads/master: e3f1dbd21ddfaa22649b93212d5ac4b052c1e4a7
4 changes: 2 additions & 2 deletions trunk/drivers/usb/otg/mv_otg.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ static void otg_clock_enable(struct mv_otg *mvotg)
unsigned int i;

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

static void otg_clock_disable(struct mv_otg *mvotg)
{
unsigned int i;

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

static int mv_otg_enable_internal(struct mv_otg *mvotg)
Expand Down

0 comments on commit 7259135

Please sign in to comment.