Skip to content

Commit

Permalink
davinci: dm646x: CDCE clocks: davinci_clk converted to clk_lookup
Browse files Browse the repository at this point in the history
Remove unneeded 'struct davinci_clk' wrapper around 'struct
clk_lookup' and use clk_lookup directly.

Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
  • Loading branch information
Kevin Hilman committed Mar 1, 2010
1 parent 08aca08 commit c564191
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 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 c564191

Please sign in to comment.