diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2005-09-15 18:52:45 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2005-09-15 18:52:45 +0000 |
commit | 506380a7d9fb61033b545861eb521a2dc9d6bf60 (patch) | |
tree | d60346f98414c3a2767d7c9383ab0c268fbc9d7d /sys/arch/m68k/include | |
parent | 9a7decdb09c8a0a11df7822828b6c0a8d04479b9 (diff) |
get rid of MD m68k_trunc_page and m68k_round_page and replace by MI
trunc_page and round_page
go go go! miod@
Diffstat (limited to 'sys/arch/m68k/include')
-rw-r--r-- | sys/arch/m68k/include/param.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/m68k/include/param.h b/sys/arch/m68k/include/param.h index f5fe631af62..d1f75f458db 100644 --- a/sys/arch/m68k/include/param.h +++ b/sys/arch/m68k/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.13 2005/09/12 23:05:05 miod Exp $ */ +/* $OpenBSD: param.h,v 1.14 2005/09/15 18:52:43 martin Exp $ */ /* $NetBSD: param.h,v 1.2 1997/06/10 18:21:23 veego Exp $ */ /* @@ -140,8 +140,6 @@ */ #define m68k_round_seg(x) ((((unsigned)(x)) + SEGOFSET) & ~SEGOFSET) #define m68k_trunc_seg(x) ((unsigned)(x) & ~SEGOFSET) -#define m68k_round_page(x) ((((unsigned)(x)) + PGOFSET) & ~PGOFSET) -#define m68k_trunc_page(x) ((unsigned)(x) & ~PGOFSET) #define m68k_page_offset(x) ((unsigned)(x) & PGOFSET) #define m68k_btop(x) ((unsigned)(x) >> PGSHIFT) #define m68k_ptob(x) ((unsigned)(x) << PGSHIFT) |