diff options
Diffstat (limited to 'arch/arm/mach-mx1/clock.c')
| -rw-r--r-- | arch/arm/mach-mx1/clock.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/mach-mx1/clock.c b/arch/arm/mach-mx1/clock.c index d1b588519ad..6cf2d4a7511 100644 --- a/arch/arm/mach-mx1/clock.c +++ b/arch/arm/mach-mx1/clock.c @@ -570,7 +570,6 @@ static struct clk_lookup lookups[] __initdata = {  int __init mx1_clocks_init(unsigned long fref)  {  	unsigned int reg; -	int i;  	/* disable clocks we are able to */  	__raw_writel(0, SCM_GCCR); @@ -592,8 +591,7 @@ int __init mx1_clocks_init(unsigned long fref)  	reg = (reg & CCM_CSCR_CLKO_MASK) >> CCM_CSCR_CLKO_OFFSET;  	clko_clk.parent = (struct clk *)clko_clocks[reg]; -	for (i = 0; i < ARRAY_SIZE(lookups); i++) -		clkdev_add(&lookups[i]); +	clkdev_add_table(lookups, ARRAY_SIZE(lookups));  	clk_enable(&hclk);  	clk_enable(&fclk);  |