diff options
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 4c3fca18a171..2cb5ae790203 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; | |||
52 | static unsigned long _gcmp_base; | 52 | static unsigned long _gcmp_base; |
53 | static unsigned int ipi_map[NR_CPUS]; | 53 | static unsigned int ipi_map[NR_CPUS]; |
54 | 54 | ||
55 | static DEFINE_SPINLOCK(mips_irq_lock); | 55 | static DEFINE_RAW_SPINLOCK(mips_irq_lock); |
56 | 56 | ||
57 | static inline int mips_pcibios_iack(void) | 57 | static inline int mips_pcibios_iack(void) |
58 | { | 58 | { |
@@ -103,7 +103,7 @@ static inline int get_int(void) | |||
103 | { | 103 | { |
104 | unsigned long flags; | 104 | unsigned long flags; |
105 | int irq; | 105 | int irq; |
106 | spin_lock_irqsave(&mips_irq_lock, flags); | 106 | raw_spin_lock_irqsave(&mips_irq_lock, flags); |
107 | 107 | ||
108 | irq = mips_pcibios_iack(); | 108 | irq = mips_pcibios_iack(); |
109 | 109 | ||
@@ -113,7 +113,7 @@ static inline int get_int(void) | |||
113 | * on an SMP system, so leave it up to the generic code... | 113 | * on an SMP system, so leave it up to the generic code... |
114 | */ | 114 | */ |
115 | 115 | ||
116 | spin_unlock_irqrestore(&mips_irq_lock, flags); | 116 | raw_spin_unlock_irqrestore(&mips_irq_lock, flags); |
117 | 117 | ||
118 | return irq; | 118 | return irq; |
119 | } | 119 | } |