diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2005-11-09 18:08:38 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2005-11-09 18:08:38 +0000 |
commit | dd911d3a6513d0234c5faa7fe84a1c8e4caafbda (patch) | |
tree | 1c638b81ec520c3a4255cb438be7f16d560224f4 /sys/arch/arm/include/param.h | |
parent | 055e9ae6eeb7810687cd1bbbbb2216433a2bf429 (diff) |
use atop() and ptoa()
tested by jolan@
Diffstat (limited to 'sys/arch/arm/include/param.h')
-rw-r--r-- | sys/arch/arm/include/param.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/arm/include/param.h b/sys/arch/arm/include/param.h index 496cf7859d8..7f1276566d9 100644 --- a/sys/arch/arm/include/param.h +++ b/sys/arch/arm/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.8 2005/10/21 15:43:01 martin Exp $ */ +/* $OpenBSD: param.h,v 1.9 2005/11/09 18:08:37 martin Exp $ */ /* $NetBSD: param.h,v 1.9 2002/03/24 03:37:23 thorpej Exp $ */ /* @@ -100,9 +100,6 @@ #define USPACE_UNDEF_STACK_TOP (USPACE_SVC_STACK_BOTTOM - 0x10) #define USPACE_UNDEF_STACK_BOTTOM (sizeof(struct user) + FPCONTEXTSIZE + 10) -#define arm_btop(x) ((x) >> PAGE_SHIFT) -#define arm_ptob(x) ((x) << PAGE_SHIFT) - #ifdef _KERNEL #ifndef _LOCORE void delay (unsigned); |