Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 163172
b: refs/heads/master
c: fb8fcb8
h: refs/heads/master
v: v3
  • Loading branch information
Sandeep Paulraj authored and Kevin Hilman committed Aug 26, 2009
1 parent 457994e commit 5c45bf9
Show file tree
Hide file tree
Showing 8 changed files with 876 additions and 2 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: 5fcd294df26e6160f32ea551ef074630b4df728d
refs/heads/master: fb8fcb891390639d6258c816abb537663495da0c
5 changes: 4 additions & 1 deletion trunk/arch/arm/mach-davinci/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,10 @@ static void __init clk_pll_init(struct clk *clk)
if (ctrl & PLLCTL_PLLEN) {
bypass = 0;
mult = __raw_readl(pll->base + PLLM);
mult = (mult & PLLM_PLLM_MASK) + 1;
if (cpu_is_davinci_dm365())
mult = 2 * (mult & PLLM_PLLM_MASK);
else
mult = (mult & PLLM_PLLM_MASK) + 1;
} else
bypass = 1;

Expand Down
Loading

0 comments on commit 5c45bf9

Please sign in to comment.