diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2010-09-29 18:46:55 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2010-10-12 16:53:44 +0200 | 
| commit | b7b29338dc7111ed8bd4d6555d84afae13ebe752 (patch) | |
| tree | 4c3159ea8bb0489ba463a061d3e6446dbfb45af2 /kernel/irq/chip.c | |
| parent | b7d0d8258a9f71949b810e0f82a3d75088f4d364 (diff) | |
genirq: Sanitize dynamic irq handling
Use the cleanup functions of the dynamic allocator. No need to have
separate implementations.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/irq/chip.c')
| -rw-r--r-- | kernel/irq/chip.c | 102 | 
1 files changed, 0 insertions, 102 deletions
| diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index 3405761d6224..baa5c4acad83 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -18,108 +18,6 @@  #include "internals.h" -static void dynamic_irq_init_x(unsigned int irq, bool keep_chip_data) -{ -	struct irq_desc *desc; -	unsigned long flags; - -	desc = irq_to_desc(irq); -	if (!desc) { -		WARN(1, KERN_ERR "Trying to initialize invalid IRQ%d\n", irq); -		return; -	} - -	/* Ensure we don't have left over values from a previous use of this irq */ -	raw_spin_lock_irqsave(&desc->lock, flags); -	desc->status = IRQ_DEFAULT_INIT_FLAGS; -	desc->irq_data.chip = &no_irq_chip; -	desc->handle_irq = handle_bad_irq; -	desc->depth = 1; -	desc->irq_data.msi_desc = NULL; -	desc->irq_data.handler_data = NULL; -	if (!keep_chip_data) -		desc->irq_data.chip_data = NULL; -	desc->action = NULL; -	desc->irq_count = 0; -	desc->irqs_unhandled = 0; -#ifdef CONFIG_SMP -	cpumask_setall(desc->irq_data.affinity); -#ifdef CONFIG_GENERIC_PENDING_IRQ -	cpumask_clear(desc->pending_mask); -#endif -#endif -	raw_spin_unlock_irqrestore(&desc->lock, flags); -} - -/** - *	dynamic_irq_init - initialize a dynamically allocated irq - *	@irq:	irq number to initialize - */ -void dynamic_irq_init(unsigned int irq) -{ -	dynamic_irq_init_x(irq, false); -} - -/** - *	dynamic_irq_init_keep_chip_data - initialize a dynamically allocated irq - *	@irq:	irq number to initialize - * - *	does not set irq_to_desc(irq)->irq_data.chip_data to NULL - */ -void dynamic_irq_init_keep_chip_data(unsigned int irq) -{ -	dynamic_irq_init_x(irq, true); -} - -static void dynamic_irq_cleanup_x(unsigned int irq, bool keep_chip_data) -{ -	struct irq_desc *desc = irq_to_desc(irq); -	unsigned long flags; - -	if (!desc) { -		WARN(1, KERN_ERR "Trying to cleanup invalid IRQ%d\n", irq); -		return; -	} - -	raw_spin_lock_irqsave(&desc->lock, flags); -	if (desc->action) { -		raw_spin_unlock_irqrestore(&desc->lock, flags); -		WARN(1, KERN_ERR "Destroying IRQ%d without calling free_irq\n", -			irq); -		return; -	} -	desc->irq_data.msi_desc = NULL; -	desc->irq_data.handler_data = NULL; -	if (!keep_chip_data) -		desc->irq_data.chip_data = NULL; -	desc->handle_irq = handle_bad_irq; -	desc->irq_data.chip = &no_irq_chip; -	desc->name = NULL; -	clear_kstat_irqs(desc); -	raw_spin_unlock_irqrestore(&desc->lock, flags); -} - -/** - *	dynamic_irq_cleanup - cleanup a dynamically allocated irq - *	@irq:	irq number to initialize - */ -void dynamic_irq_cleanup(unsigned int irq) -{ -	dynamic_irq_cleanup_x(irq, false); -} - -/** - *	dynamic_irq_cleanup_keep_chip_data - cleanup a dynamically allocated irq - *	@irq:	irq number to initialize - * - *	does not set irq_to_desc(irq)->irq_data.chip_data to NULL - */ -void dynamic_irq_cleanup_keep_chip_data(unsigned int irq) -{ -	dynamic_irq_cleanup_x(irq, true); -} - -  /**   *	set_irq_chip - set the irq chip for an irq   *	@irq:	irq number | 
