diff options
author | ru <ru@FreeBSD.org> | 2005-01-29 21:43:34 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-01-29 21:43:34 +0000 |
commit | 50196eae923bef5ce457166f084500cc47de4439 (patch) | |
tree | b8a78033dc1927d19334f859c663851187c8b9f6 | |
parent | e1559d6a6e3bb7682e3430dc78d25bd9d844a08b (diff) | |
download | FreeBSD-src-50196eae923bef5ce457166f084500cc47de4439.zip FreeBSD-src-50196eae923bef5ce457166f084500cc47de4439.tar.gz |
Hopefully unbreak modules build.
-rw-r--r-- | sys/alpha/include/bus.h | 2 | ||||
-rw-r--r-- | sys/sparc64/include/bus.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/alpha/include/bus.h b/sys/alpha/include/bus.h index 1122e26..ae89834 100644 --- a/sys/alpha/include/bus.h +++ b/sys/alpha/include/bus.h @@ -88,7 +88,7 @@ typedef u_int32_t bus_space_handle_t; /* The largest address space known so far is 40 bits */ #define BUS_SPACE_MAXADDR 0xFFFFFFFFFUL -#define BUS_SPACE_UNRESTRICTED (~0UL) +#define BUS_SPACE_UNRESTRICTED (~0) /* * Map a region of device bus space into CPU virtual address space. diff --git a/sys/sparc64/include/bus.h b/sys/sparc64/include/bus.h index 1a90e24..86407be 100644 --- a/sys/sparc64/include/bus.h +++ b/sys/sparc64/include/bus.h @@ -115,7 +115,7 @@ typedef u_long bus_size_t; #define BUS_SPACE_MAXADDR_32BIT 0xFFFFFFFF #define BUS_SPACE_MAXADDR 0xFFFFFFFF -#define BUS_SPACE_UNRESTRICTED (~0UL) +#define BUS_SPACE_UNRESTRICTED (~0) /* * Access methods for bus resources and address space. |