summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gallatin <gallatin@FreeBSD.org>2002-10-21 13:48:29 +0000
committerAndrew Gallatin <gallatin@FreeBSD.org>2002-10-21 13:48:29 +0000
commitcde1a63db381b49a000bdf5ea13f328c6ed7fcb0 (patch)
treed56db77d635c98e6f62bee24d98df682654f6dcc
parent777bca5e2087910e4dc701a3c27579bfcdf83747 (diff)
Notes
-rw-r--r--sys/alpha/include/bus.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/alpha/include/bus.h b/sys/alpha/include/bus.h
index 11d47ce96739..c3e88427f1d2 100644
--- a/sys/alpha/include/bus.h
+++ b/sys/alpha/include/bus.h
@@ -91,6 +91,20 @@ typedef u_int32_t bus_space_handle_t;
#define BUS_SPACE_UNRESTRICTED (~0UL)
/*
+ * Unmap a region of device bus space.
+ */
+
+static __inline void bus_space_unmap(bus_space_tag_t t, bus_space_handle_t bsh,
+ bus_size_t size);
+
+static __inline void
+bus_space_unmap(bus_space_tag_t t __unused, bus_space_handle_t bsh __unused,
+ bus_size_t size __unused)
+{
+}
+
+
+/*
* Get a new handle for a subregion of an already-mapped area of bus space.
*/