From 21535672bbddf3d92ec6f57e71755bd6545e3307 Mon Sep 17 00:00:00 2001 From: Juli Mallett Date: Sat, 10 Mar 2012 18:35:38 +0000 Subject: [PATCH] Fix reversed logic in previous commit that broke build and earned me quite the pointy hat. Submitted by: bz --- sys/mips/include/_bus.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/mips/include/_bus.h b/sys/mips/include/_bus.h index 1527a18f41a7..1eaf6fad7e36 100644 --- a/sys/mips/include/_bus.h +++ b/sys/mips/include/_bus.h @@ -36,9 +36,9 @@ */ #include "opt_cputype.h" #if defined(CPU_CNMIPS) && !defined(__mips_n64) -typedef uintptr_t bus_addr_t; -#else typedef uint64_t bus_addr_t; +#else +typedef uintptr_t bus_addr_t; #endif typedef uintptr_t bus_size_t;