powerpc: media5200: Remove pointless set_irq_type()
The irq chip has no irq_set_type() callback. So calling the call is pointless. Set IRQ_LEVEL via the proper accessor. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
98488db9ff
commit
212d786dab
1 changed files with 1 additions and 6 deletions
|
@ -115,15 +115,10 @@ void media5200_irq_cascade(unsigned int virq, struct irq_desc *desc)
|
|||
static int media5200_irq_map(struct irq_host *h, unsigned int virq,
|
||||
irq_hw_number_t hw)
|
||||
{
|
||||
struct irq_desc *desc = irq_to_desc(virq);
|
||||
|
||||
pr_debug("%s: h=%p, virq=%i, hwirq=%i\n", __func__, h, virq, (int)hw);
|
||||
set_irq_chip_data(virq, &media5200_irq);
|
||||
set_irq_chip_and_handler(virq, &media5200_irq_chip, handle_level_irq);
|
||||
set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
|
||||
desc->status &= ~(IRQ_TYPE_SENSE_MASK | IRQ_LEVEL);
|
||||
desc->status |= IRQ_TYPE_LEVEL_LOW | IRQ_LEVEL;
|
||||
|
||||
irq_set_status_flags(virq, IRQ_LEVEL);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue