diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-04-07 15:45:19 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-04-07 15:45:19 +0000 |
commit | 0c04d1ff464573bd89ea1884ad71bed30df9c9c0 (patch) | |
tree | c10b2184e017cd1cb87b7608fb3cf89e433c3151 /sys/arch/arm | |
parent | aa1d707b3d33489f4d03816c38e6aa3451ae4fd5 (diff) |
Make sure the ALIGN() macro uses u_long on all platforms for consistency, and
update the comment block accordingly.
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/include/param.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/arm/include/param.h b/sys/arch/arm/include/param.h index c093e21ab35..15327ffeb85 100644 --- a/sys/arch/arm/include/param.h +++ b/sys/arch/arm/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.14 2010/11/20 20:15:28 miod Exp $ */ +/* $OpenBSD: param.h,v 1.15 2011/04/07 15:45:16 miod Exp $ */ /* $NetBSD: param.h,v 1.9 2002/03/24 03:37:23 thorpej Exp $ */ /* @@ -138,11 +138,11 @@ void delay (unsigned); * */ #define ALIGNBYTES (sizeof(int) - 1) -#define ALIGN(p) (((u_int)(p) + ALIGNBYTES) &~ ALIGNBYTES) +#define ALIGN(p) (((u_long)(p) + ALIGNBYTES) &~ ALIGNBYTES) #define ALIGNED_POINTER(p,t) ((((u_long)(p)) & (sizeof(t)-1)) == 0) /* ARM-specific macro to align a stack pointer (downwards). */ #define STACKALIGNBYTES (8 - 1) -#define STACKALIGN(p) ((u_int)(p) &~ STACKALIGNBYTES) +#define STACKALIGN(p) ((u_long)(p) &~ STACKALIGNBYTES) #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */ #define DEV_BSIZE (1 << DEV_BSHIFT) |