diff options
Diffstat (limited to 'sys/arch/arm/include/disklabel.h')
-rw-r--r-- | sys/arch/arm/include/disklabel.h | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/sys/arch/arm/include/disklabel.h b/sys/arch/arm/include/disklabel.h index d21c578ba61..d58b9d71461 100644 --- a/sys/arch/arm/include/disklabel.h +++ b/sys/arch/arm/include/disklabel.h @@ -1,5 +1,5 @@ -/* $OpenBSD: disklabel.h,v 1.6 2006/06/26 23:11:31 krw Exp $ */ -/* $OpenBSD: disklabel.h,v 1.6 2006/06/26 23:11:31 krw Exp $ */ +/* $OpenBSD: disklabel.h,v 1.7 2006/07/01 16:50:32 krw Exp $ */ +/* $OpenBSD: disklabel.h,v 1.7 2006/07/01 16:50:32 krw Exp $ */ /* $NetBSD: disklabel.h,v 1.2 2001/11/25 19:02:03 thorpej Exp $ */ /* @@ -105,24 +105,6 @@ struct dos_partition { #define DPCYL(c, s) ((c) + (((s) & 0xc0) << 2)) -#ifdef __ARMEL__ -#define get_le(x) (*((u_int32_t *)x)) -#else -static __inline u_int32_t get_le(void *); -static __inline u_int32_t -get_le(void *p) -{ - u_int8_t *_p = (u_int8_t *)p; - u_int32_t x; - x = _p[0]; - x |= _p[1] << 8; - x |= _p[2] << 16; - x |= _p[3] << 24; - return x; -} -#endif - - struct cpu_disklabel { struct dos_partition dosparts[NDOSPART]; struct dkbad bad; |