diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-16 00:08:29 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-16 00:08:29 +0000 |
commit | 94b4fe00be535b3ae754dbe39a97ef12c2839ed2 (patch) | |
tree | 57f806eecffaf6c61803794ab60e0c56fdedfc1f /sys/arch/mvme88k | |
parent | 98c2e30a5e5f93f50f7ec576c44f89e871fe658c (diff) |
Remove badwordaddr().
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/machdep.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c index 48ebaec67e5..a740ed5317f 100644 --- a/sys/arch/mvme88k/mvme88k/machdep.c +++ b/sys/arch/mvme88k/mvme88k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.29 2001/03/12 22:59:02 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.30 2001/03/16 00:08:28 miod Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -131,7 +131,6 @@ void dumpsys __P((void)); void configure __P((void)); void consinit __P((void)); void kdb_init __P((void)); -int badwordaddr __P((void *addr)); volatile unsigned char *ivec[] = { (unsigned char *)0xFFFE0003, /* not used, no such thing as int 0 */ @@ -2095,12 +2094,6 @@ spl0(void) return (x); } -int -badwordaddr(void *addr) -{ - return badaddr((vm_offset_t)addr, 4); -} - void MY_info(f, p, flags, s) struct trapframe *f; |