Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 860652bf authored by Henrik Kretzschmar's avatar Henrik Kretzschmar Committed by Thomas Gleixner
Browse files

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: default avatarHenrik Kretzschmar <henne@nachtwindheim.de>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Jiri Kosina <jkosina@suse.cz>
LKML-Reference: <1269431961-5731-1-git-send-email-henne@nachtwindheim.de>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent cc8c3b78
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;