[MIPS] Drop __devinit tag from allocate_irqno() and free_irqno()
This fix these warnings: WARNING: arch/mips/kernel/built-in.o - Section mismatch: reference to .init.text:free_irqno from __ksymtab_gpl between '__ksymtab_free_irqno' (at offset 0x0) and '__ksymtab_allocate_irqno' WARNING: arch/mips/kernel/built-in.o - Section mismatch: reference to .init.text:allocate_irqno from __ksymtab_gpl after '__ksymtab_allocate_irqno' (at offset 0x8) Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
55d0b4e3f6
commit
f543110da7
@ -28,7 +28,7 @@
|
||||
|
||||
static unsigned long irq_map[NR_IRQS / BITS_PER_LONG];
|
||||
|
||||
int __devinit allocate_irqno(void)
|
||||
int allocate_irqno(void)
|
||||
{
|
||||
int irq;
|
||||
|
||||
@ -59,7 +59,7 @@ void __init alloc_legacy_irqno(void)
|
||||
BUG_ON(test_and_set_bit(i, irq_map));
|
||||
}
|
||||
|
||||
void __devinit free_irqno(unsigned int irq)
|
||||
void free_irqno(unsigned int irq)
|
||||
{
|
||||
smp_mb__before_clear_bit();
|
||||
clear_bit(irq, irq_map);
|
||||
|
Loading…
Reference in New Issue
Block a user