summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2010-04-28 21:23:19 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2010-04-28 21:23:19 +0000
commit39425b7a393109f55b31b3db3a7d7384f6cfcdf0 (patch)
tree8cb02c665c2f1d8870a21879d4c6ddfe95406c09 /sys/dev
parent7da984f93e47d3c361dd71ed89581c613ab4c85e (diff)
s/i386/__i386__/, no binary change.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/aha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/aha.c b/sys/dev/isa/aha.c
index fefa0dee62e..77138b0babf 100644
--- a/sys/dev/isa/aha.c
+++ b/sys/dev/isa/aha.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aha.c,v 1.67 2010/03/23 01:57:20 krw Exp $ */
+/* $OpenBSD: aha.c,v 1.68 2010/04/28 21:23:18 kettenis Exp $ */
/* $NetBSD: aha.c,v 1.11 1996/05/12 23:51:23 mycroft Exp $ */
#undef AHADIAG
@@ -77,7 +77,7 @@
* on i386 at least, xfers to/from user memory
* cannot be serviced at interrupt time.
*/
-#ifdef i386
+#ifdef __i386__
#define VOLATILE_XS(xs) \
((xs)->datalen > 0 && (xs)->bp == NULL && \
((xs)->flags & SCSI_POLL) == 0)