Date: Tue, 13 Oct 2015 19:46:12 +0000 (UTC) From: "Conrad E. Meyer" <cem@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r289258 - head/sys/dev/ioat Message-ID: <201510131946.t9DJkCtS043319@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cem Date: Tue Oct 13 19:46:12 2015 New Revision: 289258 URL: https://svnweb.freebsd.org/changeset/base/289258 Log: ioat: Use correct macro, fix build on i386 Sponsored by: EMC / Isilon Storage Division Modified: head/sys/dev/ioat/ioat_internal.h Modified: head/sys/dev/ioat/ioat_internal.h ============================================================================== --- head/sys/dev/ioat/ioat_internal.h Tue Oct 13 19:45:29 2015 (r289257) +++ head/sys/dev/ioat/ioat_internal.h Tue Oct 13 19:46:12 2015 (r289258) @@ -65,7 +65,7 @@ ioat_bus_space_write_8_lower_first(bus_s bus_space_write_4(tag, handle, offset + 4, val >> 32); } -#ifdef i386 +#ifdef __i386__ #define ioat_bus_space_read_8 ioat_bus_space_read_8_lower_first #define ioat_bus_space_write_8 ioat_bus_space_write_8_lower_first #else
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510131946.t9DJkCtS043319>