Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 221153
b: refs/heads/master
c: 9616674
h: refs/heads/master
i:
  221151: 728fa13
v: v3
  • Loading branch information
Seungwhan Youn authored and Kukjin Kim committed Oct 25, 2010
1 parent 7898f1d commit db47f24
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c9fa7a08ccb40def56beb9986839b808646f579c
refs/heads/master: 9616674a3597c2ddc4dbeb620eed63ff06b078f4
3 changes: 3 additions & 0 deletions trunk/arch/arm/mach-s5p64x0/clock-s5p6440.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ static int s5p6440_epll_set_rate(struct clk *clk, unsigned long rate)
__raw_writel(epll_con, S5P64X0_EPLL_CON);
__raw_writel(epll_con_k, S5P64X0_EPLL_CON_K);

printk(KERN_WARNING "EPLL Rate changes from %lu to %lu\n",
clk->rate, rate);

clk->rate = rate;

return 0;
Expand Down
3 changes: 3 additions & 0 deletions trunk/arch/arm/mach-s5p64x0/clock-s5p6450.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ static int s5p6450_epll_set_rate(struct clk *clk, unsigned long rate)
__raw_writel(epll_con, S5P64X0_EPLL_CON);
__raw_writel(epll_con_k, S5P64X0_EPLL_CON_K);

printk(KERN_WARNING "EPLL Rate changes from %lu to %lu\n",
clk->rate, rate);

clk->rate = rate;

return 0;
Expand Down
3 changes: 3 additions & 0 deletions trunk/arch/arm/mach-s5pc100/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,9 @@ static int s5pc100_epll_set_rate(struct clk *clk, unsigned long rate)

__raw_writel(epll_con, S5P_EPLL_CON);

printk(KERN_WARNING "EPLL Rate changes from %lu to %lu\n",
clk->rate, rate);

clk->rate = rate;

return 0;
Expand Down
3 changes: 3 additions & 0 deletions trunk/arch/arm/mach-s5pv210/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1109,6 +1109,9 @@ static int s5pv210_epll_set_rate(struct clk *clk, unsigned long rate)
__raw_writel(epll_con, S5P_EPLL_CON);
__raw_writel(epll_con_k, S5P_EPLL_CON1);

printk(KERN_WARNING "EPLL Rate changes from %lu to %lu\n",
clk->rate, rate);

clk->rate = rate;

return 0;
Expand Down

0 comments on commit db47f24

Please sign in to comment.