Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 316613
b: refs/heads/master
c: 64e2bc4
h: refs/heads/master
i:
  316611: b814533
v: v3
  • Loading branch information
Lauri Hintsala authored and Shawn Guo committed Jul 5, 2012
1 parent f91b883 commit 8dde2d4
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: 275d58025f8d59c493384e1e9660c9c5b7b28d2d
refs/heads/master: 64e2bc41304726a5ca8a4d37754db69b88841ebf
6 changes: 3 additions & 3 deletions trunk/drivers/clk/mxs/clk-imx28.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ static void __init clk_misc_init(void)

/*
* 480 MHz seems too high to be ssp clock source directly,
* so set frac0 to get a 288 MHz ref_io0.
* so set frac0 to get a 288 MHz ref_io0 and ref_io1.
*/
val = readl_relaxed(FRAC0);
val &= ~(0x3f << BP_FRAC0_IO0FRAC);
val |= 30 << BP_FRAC0_IO0FRAC;
val &= ~((0x3f << BP_FRAC0_IO0FRAC) | (0x3f << BP_FRAC0_IO1FRAC));
val |= (30 << BP_FRAC0_IO0FRAC) | (30 << BP_FRAC0_IO1FRAC);
writel_relaxed(val, FRAC0);
}

Expand Down

0 comments on commit 8dde2d4

Please sign in to comment.