Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c564191b authored by Kevin Hilman's avatar Kevin Hilman
Browse files

davinci: dm646x: CDCE clocks: davinci_clk converted to clk_lookup



Remove unneeded 'struct davinci_clk' wrapper around 'struct
clk_lookup' and use clk_lookup directly.

Signed-off-by: default avatarKevin Hilman <khilman@deeprootsystems.com>
parent 08aca087
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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);
	}
}