diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2008-04-24 12:53:51 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2008-04-24 12:53:51 +0000 |
commit | 7d6e59053251c051919675c438d1e4f001e9be4b (patch) | |
tree | 1a67b301edb3cf18898ee0f81fe4ce03f8822562 | |
parent | b1312b075460fe4fc3805593b6158b88a3d4b796 (diff) |
Keep order of "#if defined..." consistent.
ok dlg@
-rw-r--r-- | sys/dev/ic/com.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index 49c08b7362a..916aa75e059 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.124 2008/04/24 12:49:40 jsing Exp $ */ +/* $OpenBSD: com.c,v 1.125 2008/04/24 12:53:50 jsing Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /* @@ -81,7 +81,7 @@ #endif #include <machine/bus.h> -#if defined(__sparc64__) || !defined(__sparc__) +#if !defined(__sparc__) || defined(__sparc64__) #include <machine/intr.h> #endif |