proper extern for late_time_init

Add a proper extern for late_time_init in include/linux/init.h

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: john stultz <johnstul@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Adrian Bunk 2008-04-29 00:59:18 -07:00 committed by Linus Torvalds
parent 175a06ae30
commit 7d195a5409
6 changed files with 3 additions and 9 deletions

View File

@ -143,9 +143,6 @@ void __init plat_time_init(void)
mips_hpt_frequency = 33000000 * 3 * 5; mips_hpt_frequency = 33000000 * 3 * 5;
} }
/* No other usable initialization hook than this ... */
extern void (*late_time_init)(void);
unsigned long ocd_base; unsigned long ocd_base;
EXPORT_SYMBOL(ocd_base); EXPORT_SYMBOL(ocd_base);

View File

@ -30,8 +30,6 @@ static void (*callback_init_IRQ)(void);
extern unsigned char __res[sizeof(bd_t)]; extern unsigned char __res[sizeof(bd_t)];
extern void (*late_time_init)(void);
#ifdef CONFIG_GEN_RTC #ifdef CONFIG_GEN_RTC
TODC_ALLOC(); TODC_ALLOC();

View File

@ -4,6 +4,7 @@
*/ */
#include <linux/clockchips.h> #include <linux/clockchips.h>
#include <linux/init.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/jiffies.h> #include <linux/jiffies.h>
#include <linux/threads.h> #include <linux/threads.h>
@ -109,8 +110,6 @@ static void __init setup_itimer(void)
clockevents_register_device(&itimer_clockevent); clockevents_register_device(&itimer_clockevent);
} }
extern void (*late_time_init)(void);
void __init time_init(void) void __init time_init(void)
{ {
long long nsecs; long long nsecs;

View File

@ -115,7 +115,6 @@ irqreturn_t timer_interrupt(int irq, void *dev_id)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
extern void (*late_time_init)(void);
/* Duplicate of time_init() below, with hpet_enable part added */ /* Duplicate of time_init() below, with hpet_enable part added */
void __init hpet_time_init(void) void __init hpet_time_init(void)
{ {

View File

@ -1,7 +1,6 @@
#ifndef _ASMX86_TIME_H #ifndef _ASMX86_TIME_H
#define _ASMX86_TIME_H #define _ASMX86_TIME_H
extern void (*late_time_init)(void);
extern void hpet_time_init(void); extern void hpet_time_init(void);
#include <asm/mc146818rtc.h> #include <asm/mc146818rtc.h>

View File

@ -147,6 +147,8 @@ extern unsigned int reset_devices;
void setup_arch(char **); void setup_arch(char **);
void prepare_namespace(void); void prepare_namespace(void);
extern void (*late_time_init)(void);
#endif #endif
#ifndef MODULE #ifndef MODULE