Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f543110da7a53acb8c6d367e740ca9e110f0bb3a
Commit:     f543110da7a53acb8c6d367e740ca9e110f0bb3a
Parent:     55d0b4e3f6526daf1cc7449028bf5d4c304a6a69
Author:     Atsushi Nemoto <[EMAIL PROTECTED]>
AuthorDate: Thu May 10 01:20:30 2007 +0900
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Fri May 11 14:28:31 2007 +0100

    [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 <[EMAIL PROTECTED]>
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/kernel/irq.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/kernel/irq.c b/arch/mips/kernel/irq.c
index 2fe4c86..aeded6c 100644
--- a/arch/mips/kernel/irq.c
+++ b/arch/mips/kernel/irq.c
@@ -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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to