summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2003-11-13 08:19:21 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2003-11-13 08:19:21 +0000
commitd3ab9093d55c479d5e03863d6c07b6a36ef557c2 (patch)
tree04cd48fea9bee23c933ec86bc93de4791d529dde /sys
parent390f9503640c66c36947049507a1708f9a5fcc80 (diff)
More leftovers after uvm_useracc() removal; from NetBSD.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/alpha/alpha/trap.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/arch/alpha/alpha/trap.c b/sys/arch/alpha/alpha/trap.c
index dbfbc2d70e4..23e7aa56e74 100644
--- a/sys/arch/alpha/alpha/trap.c
+++ b/sys/arch/alpha/alpha/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.42 2003/10/18 20:14:40 jmc Exp $ */
+/* $OpenBSD: trap.c,v 1.43 2003/11/13 08:19:20 miod Exp $ */
/* $NetBSD: trap.c,v 1.52 2000/05/24 16:48:33 thorpej Exp $ */
/*-
@@ -980,14 +980,13 @@ struct unaligned_fixup_data {
const char *type; /* opcode name */
int fixable; /* fixable, 0 if fixup not supported */
int size; /* size, 0 if unknown */
- int acc; /* useracc type; B_READ or B_WRITE */
};
-#define UNKNOWN() { "0x%lx", 0, 0, 0 }
-#define FIX_LD(n,s) { n, 1, s, B_READ }
-#define FIX_ST(n,s) { n, 1, s, B_WRITE }
-#define NOFIX_LD(n,s) { n, 0, s, B_READ }
-#define NOFIX_ST(n,s) { n, 0, s, B_WRITE }
+#define UNKNOWN() { "0x%lx", 0, 0 }
+#define FIX_LD(n,s) { n, 1, s }
+#define FIX_ST(n,s) { n, 1, s }
+#define NOFIX_LD(n,s) { n, 0, s }
+#define NOFIX_ST(n,s) { n, 0, s }
int
unaligned_fixup(va, opcode, reg, p)