diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2010-02-27 12:53:32 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-02-27 12:53:32 +0100 |
commit | a963dc70a286898c91d021e53317ba3d485e0b93 (patch) | |
tree | e4b6acc12fabe2d2001bad23afef8dc232de0aa8 /arch/mips | |
parent | ed14bbb24e62830c2b4c59f4cea3696651d502f0 (diff) | |
download | linux-3.10-a963dc70a286898c91d021e53317ba3d485e0b93.tar.gz linux-3.10-a963dc70a286898c91d021e53317ba3d485e0b93.tar.bz2 linux-3.10-a963dc70a286898c91d021e53317ba3d485e0b93.zip |
MIPS: Malta: Convert IRQ controller lock to raw spinlock.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/mti-malta/malta-int.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/mti-malta/malta-int.c b/arch/mips/mti-malta/malta-int.c index 4c3fca18a17..2cb5ae79020 100644 --- a/arch/mips/mti-malta/malta-int.c +++ b/arch/mips/mti-malta/malta-int.c @@ -52,7 +52,7 @@ static unsigned long _msc01_biu_base; static unsigned long _gcmp_base; static unsigned int ipi_map[NR_CPUS]; -static DEFINE_SPINLOCK(mips_irq_lock); +static DEFINE_RAW_SPINLOCK(mips_irq_lock); static inline int mips_pcibios_iack(void) { @@ -103,7 +103,7 @@ static inline int get_int(void) { unsigned long flags; int irq; - spin_lock_irqsave(&mips_irq_lock, flags); + raw_spin_lock_irqsave(&mips_irq_lock, flags); irq = mips_pcibios_iack(); @@ -113,7 +113,7 @@ static inline int get_int(void) * on an SMP system, so leave it up to the generic code... */ - spin_unlock_irqrestore(&mips_irq_lock, flags); + raw_spin_unlock_irqrestore(&mips_irq_lock, flags); return irq; } |