diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2010-09-27 08:44:44 -0400 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2010-10-04 06:43:37 -0400 |
| commit | 0eda58b7f3a30c9a13d83db1cfaab00e1c452055 (patch) | |
| tree | 6e6efb689188f20271d8dd290008652d3c3defd8 /kernel/irq/manage.c | |
| parent | e2c0f8ff0fc26959952fbfa89f732fef928df77f (diff) | |
genirq: Provide compat handling for chip->unmask()
Wrap the old chip function unmask() 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: <20100927121842.043608928@linutronix.de>
Reviewed-by: H. Peter Anvin <hpa@zytor.com>
Reviewed-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/irq/manage.c')
| -rw-r--r-- | kernel/irq/manage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index dfb02ff7d2ef..b3986bce64ff 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
| @@ -528,7 +528,7 @@ again: | |||
| 528 | 528 | ||
| 529 | if (!(desc->status & IRQ_DISABLED) && (desc->status & IRQ_MASKED)) { | 529 | if (!(desc->status & IRQ_DISABLED) && (desc->status & IRQ_MASKED)) { |
| 530 | desc->status &= ~IRQ_MASKED; | 530 | desc->status &= ~IRQ_MASKED; |
| 531 | desc->irq_data.chip->unmask(irq); | 531 | desc->irq_data.chip->irq_unmask(&desc->irq_data); |
| 532 | } | 532 | } |
| 533 | raw_spin_unlock_irq(&desc->lock); | 533 | raw_spin_unlock_irq(&desc->lock); |
| 534 | chip_bus_sync_unlock(desc); | 534 | chip_bus_sync_unlock(desc); |
