diff options
author | Vivek Goyal <vgoyal@in.ibm.com> | 2007-01-10 19:52:44 -0500 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2007-01-10 19:52:44 -0500 |
commit | 343cde51b3b856470eea24a89f00166b8e2d7272 (patch) | |
tree | 4810d97be6827887f734d754399c171c1a68b9f5 /kernel | |
parent | 7c8809aef0c71cc92ffc7d922e8824c04a36f44b (diff) |
[PATCH] x86-64: Make noirqdebug_setup function non init to fix modpost warning
o noirqdebug_setup() is __init but it is being called by
quirk_intel_irqbalance() which if of type __devinit. If CONFIG_HOTPLUG=y,
quirk_intel_irqbalance() is put into text section and it is wrong to
call a function in __init section.
o MODPOST flags this on i386 if CONFIG_RELOCATABLE=y
WARNING: vmlinux - Section mismatch: reference to .init.text:noirqdebug_setup from .text between 'quirk_intel_irqbalance' (at offset 0xc010969e) and 'i8237A_suspend'
o Make noirqdebug_setup() non-init.
Signed-off-by: Vivek Goyal <vgoyal@in.ibm.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/irq/spurious.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/spurious.c b/kernel/irq/spurious.c index 543ea2e5ad93..9d8c79b48823 100644 --- a/kernel/irq/spurious.c +++ b/kernel/irq/spurious.c | |||
@@ -176,7 +176,7 @@ void note_interrupt(unsigned int irq, struct irq_desc *desc, | |||
176 | 176 | ||
177 | int noirqdebug __read_mostly; | 177 | int noirqdebug __read_mostly; |
178 | 178 | ||
179 | int __init noirqdebug_setup(char *str) | 179 | int noirqdebug_setup(char *str) |
180 | { | 180 | { |
181 | noirqdebug = 1; | 181 | noirqdebug = 1; |
182 | printk(KERN_INFO "IRQ lockup detection disabled\n"); | 182 | printk(KERN_INFO "IRQ lockup detection disabled\n"); |