Commit 7d195a54 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

proper extern for late_time_init

Add a proper extern for late_time_init in include/linux/init.h
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Acked-by: default avatarIngo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: john stultz <johnstul@us.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 175a06ae
...@@ -143,9 +143,6 @@ void __init plat_time_init(void) ...@@ -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);
......
...@@ -30,8 +30,6 @@ static void (*callback_init_IRQ)(void); ...@@ -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();
......
...@@ -4,6 +4,7 @@ ...@@ -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) ...@@ -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;
......
...@@ -115,7 +115,6 @@ irqreturn_t timer_interrupt(int irq, void *dev_id) ...@@ -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)
{ {
......
#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>
......
...@@ -147,6 +147,8 @@ extern unsigned int reset_devices; ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment