Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 183221
b: refs/heads/master
c: c564191
h: refs/heads/master
i:
  183219: 32ca396
v: v3
  • Loading branch information
Kevin Hilman committed Mar 1, 2010
1 parent 712ef46 commit 25fc274
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: 08aca087f263e8089420b2723fe0c1a0cbe5de0c
refs/heads/master: c564191b1c71d82977ba14ed7f975dae9f6d0001
10 changes: 5 additions & 5 deletions trunk/arch/arm/mach-davinci/board-dm646x-evm.c
Original file line number Diff line number Diff line change
Expand Up @@ -694,19 +694,19 @@ static struct clk cdce_clk_in = {
.rate = CDCE949_XIN_RATE,
};

static struct davinci_clk cdce_clks[] = {
static struct clk_lookup cdce_clks[] = {
CLK(NULL, "xin", &cdce_clk_in),
CLK(NULL, NULL, NULL),
};

static void __init cdce_clk_init(void)
{
struct davinci_clk *c;
struct clk_lookup *c;
struct clk *clk;

for (c = cdce_clks; c->lk.clk; c++) {
clk = c->lk.clk;
clkdev_add(&c->lk);
for (c = cdce_clks; c->clk; c++) {
clk = c->clk;
clkdev_add(c);
clk_register(clk);
}
}
Expand Down

0 comments on commit 25fc274

Please sign in to comment.