Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91319
b: refs/heads/master
c: 3760d31
h: refs/heads/master
i:
  91317: 78ee45e
  91315: 5d457f7
  91311: 8561397
v: v3
  • Loading branch information
Roman Tereshonkov authored and Tony Lindgren committed Apr 14, 2008
1 parent 9849a37 commit ebc0e75
Show file tree
Hide file tree
Showing 6 changed files with 411 additions and 112 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: 02e19a960a519224a74da4d190965201044c1583
refs/heads/master: 3760d31f11bfbd0ead9eaeb8573e0602437a9d7c
8 changes: 0 additions & 8 deletions trunk/arch/arm/mach-omap2/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,6 @@ u32 omap2_get_dpll_rate(struct clk *clk)
dpll_clk = (long long)clk->parent->rate * dpll_mult;
do_div(dpll_clk, dpll_div + 1);

/* 34XX only */
if (dd->div2_reg) {
dpll = __raw_readl(dd->div2_reg);
dpll_div = dpll & dd->div2_mask;
dpll_div >>= __ffs(dd->div2_mask);
do_div(dpll_clk, dpll_div + 1);
}

return dpll_clk;
}

Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/arm/mach-omap2/clock34xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@ int __init omap2_clk_init(void)

recalculate_root_clocks();

printk(KERN_INFO "Clocking rate (Crystal/DPLL/MPU): "
printk(KERN_INFO "Clocking rate (Crystal/DPLL/ARM core): "
"%ld.%01ld/%ld/%ld MHz\n",
(osc_sys_ck.rate / 1000000), (osc_sys_ck.rate / 100000) % 10,
(core_ck.rate / 1000000), (dpll1_fck.rate / 1000000)) ;
(core_ck.rate / 1000000), (arm_fck.rate / 1000000));

/*
* Only enable those clocks we will need, let the drivers
Expand Down
Loading

0 comments on commit ebc0e75

Please sign in to comment.