genirq: Provide compat handling for chip->retrigger()
Wrap the old chip function retrigger() until the migration is complete and the old chip functions are removed. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Peter Zijlstra <peterz@infradead.org> LKML-Reference: <20100927121843.025801092@linutronix.de> Reviewed-by: H. Peter Anvin <hpa@zytor.com> Reviewed-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
2f7e99bb9b
commit
21e2b8c62c
@ -386,6 +386,11 @@ static int compat_irq_set_wake(struct irq_data *data, unsigned int on)
|
|||||||
return data->chip->set_wake(data->irq, on);
|
return data->chip->set_wake(data->irq, on);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int compat_irq_retrigger(struct irq_data *data)
|
||||||
|
{
|
||||||
|
return data->chip->retrigger(data->irq);
|
||||||
|
}
|
||||||
|
|
||||||
static void compat_bus_lock(struct irq_data *data)
|
static void compat_bus_lock(struct irq_data *data)
|
||||||
{
|
{
|
||||||
data->chip->bus_lock(data->irq);
|
data->chip->bus_lock(data->irq);
|
||||||
@ -458,6 +463,8 @@ void irq_chip_set_defaults(struct irq_chip *chip)
|
|||||||
chip->irq_set_type = compat_irq_set_type;
|
chip->irq_set_type = compat_irq_set_type;
|
||||||
if (chip->set_wake)
|
if (chip->set_wake)
|
||||||
chip->irq_set_wake = compat_irq_set_wake;
|
chip->irq_set_wake = compat_irq_set_wake;
|
||||||
|
if (chip->retrigger)
|
||||||
|
chip->irq_retrigger = compat_irq_retrigger;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void mask_ack_irq(struct irq_desc *desc)
|
static inline void mask_ack_irq(struct irq_desc *desc)
|
||||||
|
@ -70,8 +70,8 @@ void check_irq_resend(struct irq_desc *desc, unsigned int irq)
|
|||||||
if ((status & (IRQ_LEVEL | IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
|
if ((status & (IRQ_LEVEL | IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
|
||||||
desc->status = (status & ~IRQ_PENDING) | IRQ_REPLAY;
|
desc->status = (status & ~IRQ_PENDING) | IRQ_REPLAY;
|
||||||
|
|
||||||
if (!desc->irq_data.chip->retrigger ||
|
if (!desc->irq_data.chip->irq_retrigger ||
|
||||||
!desc->irq_data.chip->retrigger(irq)) {
|
!desc->irq_data.chip->irq_retrigger(&desc->irq_data)) {
|
||||||
#ifdef CONFIG_HARDIRQS_SW_RESEND
|
#ifdef CONFIG_HARDIRQS_SW_RESEND
|
||||||
/* Set it pending and activate the softirq: */
|
/* Set it pending and activate the softirq: */
|
||||||
set_bit(irq, irqs_resend);
|
set_bit(irq, irqs_resend);
|
||||||
|
Loading…
Reference in New Issue
Block a user