aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Kretzschmar <[email protected]>2010-03-24 12:59:20 +0100
committerThomas Gleixner <[email protected]>2010-03-24 14:38:23 +0100
commit860652bfb890bd861c999ec39fcffabe5b712f85 (patch)
tree9a266245973217e00533039d7aa707bf09b09e55
parentcc8c3b78433222e5dbc1fdfcfdde29e1743f181a (diff)
genirq: Move two IRQ functions from .init.text to .text
Both functions should not be marked as __init, since they be called from modules after the init section is freed. Signed-off-by: Henrik Kretzschmar <[email protected]> Cc: Yinghai Lu <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Jiri Kosina <[email protected]> LKML-Reference: <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]>
-rw-r--r--kernel/irq/chip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c
index 71eba24a39a2..3c2d6e7737f0 100644
--- a/kernel/irq/chip.c
+++ b/kernel/irq/chip.c
@@ -729,7 +729,7 @@ set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
__set_irq_handler(irq, handle, 0, name);
}
-void __init set_irq_noprobe(unsigned int irq)
+void set_irq_noprobe(unsigned int irq)
{
struct irq_desc *desc = irq_to_desc(irq);
unsigned long flags;
@@ -744,7 +744,7 @@ void __init set_irq_noprobe(unsigned int irq)
raw_spin_unlock_irqrestore(&desc->lock, flags);
}
-void __init set_irq_probe(unsigned int irq)
+void set_irq_probe(unsigned int irq)
{
struct irq_desc *desc = irq_to_desc(irq);
unsigned long flags;