aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/isa/npx.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-12-14 19:16:17 +0000
committerBruce Evans <bde@FreeBSD.org>1998-12-14 19:16:17 +0000
commit407e5f394f1a48524aa39752e878aee1a0201a82 (patch)
tree4e5c57c3d2c813820da50ca25c55aaf89200c569 /sys/i386/isa/npx.c
parent85f118c8015a7d35ca05c1bce850de85f533963e (diff)
downloadsrc-407e5f394f1a48524aa39752e878aee1a0201a82.tar.gz
src-407e5f394f1a48524aa39752e878aee1a0201a82.zip
Moved the declaration of another non-SMP variable into the non-SMP section.
Notes
Notes: svn path=/head/; revision=41797
Diffstat (limited to 'sys/i386/isa/npx.c')
-rw-r--r--sys/i386/isa/npx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c
index bb2b879a8ee8..d5a20de38b3b 100644
--- a/sys/i386/isa/npx.c
+++ b/sys/i386/isa/npx.c
@@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
- * $Id: npx.c,v 1.62 1998/10/22 05:58:40 bde Exp $
+ * $Id: npx.c,v 1.63 1998/12/07 21:58:22 archie Exp $
*/
#include "npx.h"
@@ -149,13 +149,13 @@ SYSCTL_INT(_hw,HW_FLOATINGPT, floatingpoint,
#ifndef SMP
static u_int npx0_imask = SWI_CLOCK_MASK;
static struct gate_descriptor npx_idt_probeintr;
+static int npx_intrno;
static volatile u_int npx_intrs_while_probing;
static volatile u_int npx_traps_while_probing;
#endif
static bool_t npx_ex16;
static bool_t npx_exists;
-static int npx_intrno;
static bool_t npx_irq13;
#ifndef SMP