Commit c45ef44f authored by Ralf Baechle's avatar Ralf Baechle

MIPS: PowerTV: Convert IRQ controller lock to raw spinlock.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
Cc: David VomLehn <dvomlehn@cisco.com>
parent a963dc70
......@@ -39,21 +39,21 @@
#include <asm/mach-powertv/asic_regs.h>
static DEFINE_SPINLOCK(asic_irq_lock);
static DEFINE_RAW_SPINLOCK(asic_irq_lock);
static inline int get_int(void)
{
unsigned long flags;
int irq;
spin_lock_irqsave(&asic_irq_lock, flags);
raw_spin_lock_irqsave(&asic_irq_lock, flags);
irq = (asic_read(int_int_scan) >> 4) - 1;
if (irq == 0 || irq >= NR_IRQS)
irq = -1;
spin_unlock_irqrestore(&asic_irq_lock, flags);
raw_spin_unlock_irqrestore(&asic_irq_lock, flags);
return irq;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment