diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2005-10-26 18:35:46 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2005-10-26 18:35:46 +0000 |
commit | a79c1dfd82b7e5ecaeef5b26ae097fb257d13e15 (patch) | |
tree | d9a0fdc087b8629e36c49677cd15ee9affd641a4 /sys/arch/hppa/include | |
parent | 81a0e95dd3803d07d27abbe075a425a6a8973a29 (diff) |
no more hppa_round_page() and hppa_trunc_page() macros
ok mickey@
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/param.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/hppa/include/param.h b/sys/arch/hppa/include/param.h index 4e78cee3b34..6667d2e66f4 100644 --- a/sys/arch/hppa/include/param.h +++ b/sys/arch/hppa/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.26 2005/07/31 15:31:12 miod Exp $ */ +/* $OpenBSD: param.h,v 1.27 2005/10/26 18:35:44 martin Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -112,9 +112,6 @@ /* * Mach derived conversion macros */ -#define hppa_round_page(x) ((((unsigned long)(x)) + NBPG - 1) & ~(NBPG-1)) -#define hppa_trunc_page(x) ((unsigned long)(x) & ~(NBPG-1)) - #define btop(x) ((unsigned long)(x) >> PGSHIFT) #define ptob(x) ((unsigned long)(x) << PGSHIFT) |