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();
}