From 0db138c0a8da052be3a0e7ce91fd6878c024e0aa Mon Sep 17 00:00:00 2001 From: "Andries E. Brouwer" Date: Fri, 25 Feb 2005 18:03:13 -0800 Subject: [PATCH] [PATCH] __initdata in apic.c wait_timer_tick refers to the __init functions wait_8254_wraparound or wait_hpet_tick, hence must be __initdata. --- arch/i386/kernel/apic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/i386/kernel/apic.c b/arch/i386/kernel/apic.c index 1fff2fcee242..dea3e9a8a447 100644 --- a/arch/i386/kernel/apic.c +++ b/arch/i386/kernel/apic.c @@ -894,7 +894,7 @@ static void __init wait_8254_wraparound(void) * Default initialization for 8254 timers. If we use other timers like HPET, * we override this later */ -void (*wait_timer_tick)(void) = wait_8254_wraparound; +void (*wait_timer_tick)(void) __initdata = wait_8254_wraparound; /* * This function sets up the local APIC timer, with a timeout of -- 2.39.5