x86: platform: Fix section annotations

init_IRQ() and x86_late_time_init() are missing __init annotations.

The x86 platform ops variables are annotated, but the annotation needs
to be put between the variable name and the "=" of the initializer.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
Thomas Gleixner
2009-09-16 08:42:26 +02:00
parent e11dadabf4
commit 54e2603f1a
3 changed files with 4 additions and 4 deletions

View File

@@ -140,7 +140,7 @@ void __init init_ISA_irqs(void)
} }
} }
void init_IRQ(void) void __init init_IRQ(void)
{ {
x86_init.irqs.intr_init(); x86_init.irqs.intr_init();
} }

View File

@@ -105,7 +105,7 @@ void __init hpet_time_init(void)
setup_default_timer_irq(); setup_default_timer_irq();
} }
static void x86_late_time_init(void) static __init void x86_late_time_init(void)
{ {
x86_init.timers.timer_init(); x86_init.timers.timer_init();
tsc_init(); tsc_init();

View File

@@ -23,7 +23,7 @@ void __init x86_init_pgd_noop(pgd_t *unused) { }
* The platform setup functions are preset with the default functions * The platform setup functions are preset with the default functions
* for standard PC hardware. * for standard PC hardware.
*/ */
struct __initdata x86_init_ops x86_init = { struct x86_init_ops x86_init __initdata = {
.resources = { .resources = {
.probe_roms = x86_init_noop, .probe_roms = x86_init_noop,
@@ -64,7 +64,7 @@ struct __initdata x86_init_ops x86_init = {
}, },
}; };
__cpuinitdata struct x86_cpuinit_ops x86_cpuinit = { struct x86_cpuinit_ops x86_cpuinit __cpuinitdata = {
.setup_percpu_clockev = setup_secondary_APIC_clock, .setup_percpu_clockev = setup_secondary_APIC_clock,
}; };