summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2003-08-01 07:48:25 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2003-08-01 07:48:25 +0000
commitebbf37232b1fe919bc18440a86f8e4ca10570ccc (patch)
tree26ef17c2f9f58eeea56016bf68108adda4c7d149 /sys/arch/mvme88k
parent353b7ac6f7cf7fa2bc22437f850b6e9628bb457e (diff)
No semicolon at the end of macros supposed to be atomic statements.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r--sys/arch/mvme88k/mvme88k/pmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/mvme88k/pmap.c b/sys/arch/mvme88k/mvme88k/pmap.c
index 1f5da45967d..c5c31aa265d 100644
--- a/sys/arch/mvme88k/mvme88k/pmap.c
+++ b/sys/arch/mvme88k/mvme88k/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.68 2003/01/24 09:57:44 miod Exp $ */
+/* $OpenBSD: pmap.c,v 1.69 2003/08/01 07:48:24 miod Exp $ */
/*
* Copyright (c) 2001, 2002, 2003 Miodrag Vallat
* Copyright (c) 1998-2001 Steve Murphree, Jr.
@@ -188,8 +188,8 @@ pg_to_pvh(struct vm_page *pg)
* We raise the interrupt level to splvm, to block interprocessor
* interrupts during pmap operations.
*/
-#define SPLVM(spl) spl = splvm();
-#define SPLX(spl) splx(spl);
+#define SPLVM(spl) spl = splvm()
+#define SPLX(spl) splx(spl)
#define PMAP_LOCK(pmap,spl) \
do { \