summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-08-10 15:03:44 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-08-23 11:04:20 +0200
commit34ff390b0915da9643fceab6d62c39d28d78ebfa (patch)
tree457d0148ec174410d3989574c7071ea8408d0ef7
parentopenssl: Workaround for ARM-specific files (diff)
downloadrtems-libbsd-34ff390b0915da9643fceab6d62c39d28d78ebfa.tar.bz2
BUS_SPACE(9): 64-bit support
Update #3082.
-rw-r--r--rtemsbsd/include/machine/bus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtemsbsd/include/machine/bus.h b/rtemsbsd/include/machine/bus.h
index 49fb4fe2..1f1d3255 100644
--- a/rtemsbsd/include/machine/bus.h
+++ b/rtemsbsd/include/machine/bus.h
@@ -155,14 +155,14 @@
/*
* Bus address and size types
*/
-typedef unsigned int bus_addr_t;
-typedef unsigned int bus_size_t;
+typedef uintptr_t bus_addr_t;
+typedef uintptr_t bus_size_t;
/*
* Access methods for bus resources and address space.
*/
typedef int bus_space_tag_t;
-typedef unsigned int bus_space_handle_t;
+typedef uintptr_t bus_space_handle_t;
/*
* Map a region of device bus space into CPU virtual address space.