Browse Source

MIPS: IP27: Convert nmi_lock lock to arch spinlock;

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechle 15 years ago
parent
commit
598c5abad7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      arch/mips/sgi-ip27/ip27-nmi.c

+ 2 - 2
arch/mips/sgi-ip27/ip27-nmi.c

@@ -20,7 +20,7 @@
 
 
 typedef unsigned long machreg_t;
 typedef unsigned long machreg_t;
 
 
-static DEFINE_SPINLOCK(nmi_lock);
+static arch_spinlock_t nmi_lock = __ARCH_SPIN_LOCK_UNLOCKED;
 
 
 /*
 /*
  * Lets see what else we need to do here. Set up sp, gp?
  * Lets see what else we need to do here. Set up sp, gp?
@@ -194,7 +194,7 @@ cont_nmi_dump(void)
 	/*
 	/*
 	 * Only allow 1 cpu to proceed
 	 * Only allow 1 cpu to proceed
 	 */
 	 */
-	spin_lock(&nmi_lock);
+	arch_spin_lock(&nmi_lock);
 
 
 #ifdef REAL_NMI_SIGNAL
 #ifdef REAL_NMI_SIGNAL
 	/*
 	/*