2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-21 11:44:01 +08:00

ARM: OMAP: remove unused variable

Commit 0583fe478a "ARM: convert arm/arm64 arch timer to use CLKSRC_OF init"
has left the omap5_realtime_timer_init() function with a stale variable and
broken whitespace. This fixes both.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
Arnd Bergmann 2013-04-23 23:16:44 +02:00
parent c3e0c873d0
commit 405f5e5ee5

View File

@ -621,12 +621,10 @@ void __init omap4_local_timer_init(void)
#ifdef CONFIG_SOC_OMAP5
void __init omap5_realtime_timer_init(void)
{
int err;
omap4_sync32k_timer_init();
realtime_counter_init();
clocksource_of_init();
clocksource_of_init();
}
#endif /* CONFIG_SOC_OMAP5 */