From: tip-bot for Henrik Kretzschmar on 24 Mar 2010 09:10 Commit-ID: 6e43ad17ba1d689defa032f4dc5c4ae4af876495 Gitweb: http://git.kernel.org/tip/6e43ad17ba1d689defa032f4dc5c4ae4af876495 Author: Henrik Kretzschmar <henne(a)nachtwindheim.de> AuthorDate: Wed, 24 Mar 2010 12:59:20 +0100 Committer: Thomas Gleixner <tglx(a)linutronix.de> CommitDate: Wed, 24 Mar 2010 14:04:10 +0100 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 <henne(a)nachtwindheim.de> Cc: Yinghai Lu <yinghai(a)kernel.org> Cc: Peter Zijlstra <peterz(a)infradead.org> Cc: Jiri Kosina <jkosina(a)suse.cz> LKML-Reference: <1269431961-5731-1-git-send-email-henne(a)nachtwindheim.de> Signed-off-by: Thomas Gleixner <tglx(a)linutronix.de> --- kernel/irq/chip.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index 71eba24..3c2d6e7 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; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: hwmon: f71882fg: code cleanup Next: I sent you emails but you did not reply. |