diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2010-02-27 06:53:38 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-02-27 06:53:38 -0500 |
commit | 2ba53e37120fba00fa10bebc13b9723f25e1f845 (patch) | |
tree | 88e8a50e7cc31a7f1556322974a807ad06c63193 /arch/mips | |
parent | 34ee4148472996c5fd25fbb5697982914cfe955a (diff) |
MIPS: IP27: Remove code obfuscation by enter_panic_mode().
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-nmi.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/mips/sgi-ip27/ip27-nmi.c b/arch/mips/sgi-ip27/ip27-nmi.c index 8682784abfcf..fa0872be0185 100644 --- a/arch/mips/sgi-ip27/ip27-nmi.c +++ b/arch/mips/sgi-ip27/ip27-nmi.c | |||
@@ -17,7 +17,6 @@ | |||
17 | #endif | 17 | #endif |
18 | 18 | ||
19 | #define CNODEID_NONE (cnodeid_t)-1 | 19 | #define CNODEID_NONE (cnodeid_t)-1 |
20 | #define enter_panic_mode() spin_lock(&nmi_lock) | ||
21 | 20 | ||
22 | typedef unsigned long machreg_t; | 21 | typedef unsigned long machreg_t; |
23 | 22 | ||
@@ -193,9 +192,9 @@ cont_nmi_dump(void) | |||
193 | atomic_inc(&nmied_cpus); | 192 | atomic_inc(&nmied_cpus); |
194 | #endif | 193 | #endif |
195 | /* | 194 | /* |
196 | * Use enter_panic_mode to allow only 1 cpu to proceed | 195 | * Only allow 1 cpu to proceed |
197 | */ | 196 | */ |
198 | enter_panic_mode(); | 197 | spin_lock(&nmi_lock); |
199 | 198 | ||
200 | #ifdef REAL_NMI_SIGNAL | 199 | #ifdef REAL_NMI_SIGNAL |
201 | /* | 200 | /* |