summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-09-11 23:05:38 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-09-11 23:05:38 +0000
commitcd09c5dd0bde0015a794651190ca92ed98370a05 (patch)
treede7132ea8abee4989e1047af6c2ffc93d71797fb /sys/arch
parent2430ea7873c2945a387a3ebfa870716a31ec372c (diff)
ivec[] needs to be one entry larger on 188.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mvme88k/mvme88k/machdep.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c
index afd8e3083f4..933da6653de 100644
--- a/sys/arch/mvme88k/mvme88k/machdep.c
+++ b/sys/arch/mvme88k/mvme88k/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.165 2005/04/30 16:42:37 miod Exp $ */
+/* $OpenBSD: machdep.c,v 1.166 2005/09/11 23:05:37 miod Exp $ */
/*
* Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -139,7 +139,11 @@ u_int (*md_getipl)(void);
u_int (*md_setipl)(u_int);
u_int (*md_raiseipl)(u_int);
+#ifdef MVME188
+volatile u_int8_t *ivec[8 + 1];
+#else
volatile u_int8_t *ivec[8];
+#endif
int ssir;
int want_ast;
@@ -338,7 +342,7 @@ identifycpu()
/*
* Set up real-time clocks.
- * These function pointers are set in dev/clock.c and dev/sclock.c
+ * These function pointers are set in dev/clock.c.
*/
void
cpu_initclocks()