diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-02 21:28:41 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-02 21:28:41 +0000 |
commit | 96d082fd0961b307d5402aec571fa59a275fde93 (patch) | |
tree | ba8d346c05a83aafc6dbb14c3167ea67fdd5372a /sys/arch/mvme88k | |
parent | cf67d8fb8b98c12477963015fdd28c91a18f92be (diff) |
Do not pass UPAGES and USPACE (under the name USIZE) in assym.h, code which
needs it includes <machine/param.h> already.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/locore.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/mvme88k/locore.S b/sys/arch/mvme88k/mvme88k/locore.S index 33ea4ad78dc..d06e8c8d224 100644 --- a/sys/arch/mvme88k/mvme88k/locore.S +++ b/sys/arch/mvme88k/mvme88k/locore.S @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.S,v 1.54 2007/11/15 21:23:16 miod Exp $ */ +/* $OpenBSD: locore.S,v 1.55 2007/12/02 21:28:40 miod Exp $ */ /* * Copyright (c) 2005, Miodrag Vallat. * Copyright (c) 1998 Steve Murphree, Jr. @@ -247,7 +247,7 @@ ASLOCAL(main_start) /* call main() - no arguments although main() still defines one */ bsr.n _C_LABEL(main) - addu r31, r31, USIZE + addu r31, r31, USPACE or.u r2, r0, hi16(_ASM_LABEL(main_panic)) bsr.n _C_LABEL(panic) @@ -401,7 +401,7 @@ GLOBAL(kernel_sdt) /* SDT (segment descriptor table */ .align PAGE_SIZE ASGLOBAL(initstack) - space USIZE + space USPACE ASGLOBAL(initstack_end) #ifdef MULTIPROCESSOR @@ -415,7 +415,7 @@ ASLOCAL(slavestack_end) */ .align PAGE_SIZE ASLOCAL(u0) - space USIZE + space USPACE GLOBAL(proc0paddr) word _ASM_LABEL(u0) /* KVA of proc0 uarea */ |