summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include
diff options
context:
space:
mode:
authorMartin Reindl <martin@cvs.openbsd.org>2005-10-21 11:10:07 +0000
committerMartin Reindl <martin@cvs.openbsd.org>2005-10-21 11:10:07 +0000
commitf1622a73222ac55c3e7cd9e7feccd2ec6c543a99 (patch)
treec24615d808b593dad84767134362e5943d57e30a /sys/arch/alpha/include
parentb90587a3d7956855a8d4d1728534668103d1360b (diff)
remove two unused and deprecated Mach macros, alpha_round_page() and
alpha_trunc_page() looks ok to Miod
Diffstat (limited to 'sys/arch/alpha/include')
-rw-r--r--sys/arch/alpha/include/param.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/alpha/include/param.h b/sys/arch/alpha/include/param.h
index 04cf427fa25..b21a85562fd 100644
--- a/sys/arch/alpha/include/param.h
+++ b/sys/arch/alpha/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.26 2005/07/31 15:31:08 miod Exp $ */
+/* $OpenBSD: param.h,v 1.27 2005/10/21 11:10:06 martin Exp $ */
/* $NetBSD: param.h,v 1.30 2000/06/09 16:03:04 thorpej Exp $ */
/*
@@ -139,8 +139,6 @@
/*
* Mach derived conversion macros
*/
-#define alpha_round_page(x) ((((unsigned long)(x)) + NBPG - 1) & ~(NBPG-1))
-#define alpha_trunc_page(x) ((unsigned long)(x) & ~(NBPG-1))
#define alpha_btop(x) ((unsigned long)(x) >> PGSHIFT)
#define alpha_ptob(x) ((unsigned long)(x) << PGSHIFT)