aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ncv/ncr53c500var.h
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-05-30 07:32:58 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-05-30 07:32:58 +0000
commit99b9331a4f693e66f880734cd446190fcf14508d (patch)
treee28fa7a497a1f756cd06d2e16ccb65be76af020c /sys/dev/ncv/ncr53c500var.h
parent524683999f823c88d54f27742989ad2d3e03543c (diff)
downloadsrc-99b9331a4f693e66f880734cd446190fcf14508d.tar.gz
src-99b9331a4f693e66f880734cd446190fcf14508d.zip
Check for defined(__i386__) instead of just defined(i386) since the compiler
will be updated to only define(__i386__) for ANSI cleanliness.
Notes
Notes: svn path=/head/; revision=97556
Diffstat (limited to 'sys/dev/ncv/ncr53c500var.h')
-rw-r--r--sys/dev/ncv/ncr53c500var.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ncv/ncr53c500var.h b/sys/dev/ncv/ncr53c500var.h
index fd84b4f791bf..6ba7ef14bb74 100644
--- a/sys/dev/ncv/ncr53c500var.h
+++ b/sys/dev/ncv/ncr53c500var.h
@@ -95,9 +95,9 @@ void ncvattachsubr(struct ncv_softc *);
int ncvprint(void *, const char *);
int ncvintr(void *);
-#if defined(i386)
+#if defined(__i386__)
#define SOFT_INTR_REQUIRED(slp) (softintr((slp)->sl_irq))
-#else /* !i386 */
+#else /* !__i386__ */
#define SOFT_INTR_REQUIRED(slp)
-#endif /* !i386 */
+#endif /* !__i386__ */
#endif /* !_NCR53C500VAR_H_ */