diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-03-01 17:44:35 +0300 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-05-06 13:58:58 +0300 |
commit | dd13fbd9d8562c8e6845cd87a3a1a9d372618d96 (patch) | |
tree | 72e9885b58c17f4cde957117df734747d2b605a6 /arch/arm/mach-lpc32xx | |
parent | 8a7711fccce90b14bbab413c8534af883a506041 (diff) | |
download | linux-dd13fbd9d8562c8e6845cd87a3a1a9d372618d96.tar.xz |
ARM: lpc32xx: convert to use clkdev_add_table()
We have always had an efficient way of registering a table of clock
lookups - it's called clkdev_add_table(). However, some people seem
to really love writing inefficient and unnecessary code.
Convert LPC32xx to use the correct interface.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-lpc32xx')
-rw-r--r-- | arch/arm/mach-lpc32xx/clock.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/arm/mach-lpc32xx/clock.c b/arch/arm/mach-lpc32xx/clock.c index dd5d6f532e8c..661c8f4b2310 100644 --- a/arch/arm/mach-lpc32xx/clock.c +++ b/arch/arm/mach-lpc32xx/clock.c @@ -1238,10 +1238,7 @@ static struct clk_lookup lookups[] = { static int __init clk_init(void) { - int i; - - for (i = 0; i < ARRAY_SIZE(lookups); i++) - clkdev_add(&lookups[i]); + clkdev_add_table(lookups, ARRAY_SIZE(lookups)); /* * Setup muxed SYSCLK for HCLK PLL base -this selects the |