diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-09-27 20:47:31 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-09-27 20:47:31 +0000 |
commit | 835fa87053748b9bb07c597d4b8db023e2ce1731 (patch) | |
tree | 8857763a6acf2249bc4031db0d383ccf0bad87f2 /sys/arch/sparc64 | |
parent | 905dbd4384ef74bf579dbb407bd8cb2b9b4205ef (diff) |
Make bus_addr_t and bus_size_t u_long types, instead of either uint32_t or
uint64_t, depending upon the platform; this makes the declaration of these
types consistent accross all our supported platform, and we do not intend
to support a platform where bus_addr_t could be larger than the size of the
cpu register. Requested by deraadt@ during s2k11
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/include/bus.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/include/bus.h b/sys/arch/sparc64/include/bus.h index 34d8a60db73..451cf51a519 100644 --- a/sys/arch/sparc64/include/bus.h +++ b/sys/arch/sparc64/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.26 2011/03/23 16:54:37 pirofti Exp $ */ +/* $OpenBSD: bus.h,v 1.27 2011/09/27 20:47:30 miod Exp $ */ /* $NetBSD: bus.h,v 1.31 2001/09/21 15:30:41 wiz Exp $ */ /*- @@ -139,8 +139,8 @@ enum bus_type { * Bus address and size types */ typedef const struct sparc_bus_space_tag *bus_space_tag_t; -typedef u_int64_t bus_addr_t; -typedef u_int64_t bus_size_t; +typedef u_long bus_addr_t; +typedef u_long bus_size_t; typedef struct _bus_space_handle { |