Date: Sat, 10 Mar 2012 18:35:39 +0000 (UTC) From: Juli Mallett <jmallett@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r232789 - head/sys/mips/include Message-ID: <201203101835.q2AIZdR5070656@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jmallett Date: Sat Mar 10 18:35:38 2012 New Revision: 232789 URL: http://svn.freebsd.org/changeset/base/232789 Log: Fix reversed logic in previous commit that broke build and earned me quite the pointy hat. Submitted by: bz Modified: head/sys/mips/include/_bus.h Modified: head/sys/mips/include/_bus.h ============================================================================== --- head/sys/mips/include/_bus.h Sat Mar 10 18:26:25 2012 (r232788) +++ head/sys/mips/include/_bus.h Sat Mar 10 18:35:38 2012 (r232789) @@ -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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201203101835.q2AIZdR5070656>