diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-07-18 16:18:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-07-18 16:18:29 +0000 |
commit | a45d209c879beea2f9f25fcd78fa690b99888603 (patch) | |
tree | afa6aae8fba086f9e25755ac97260746ee129cb7 /sys/dev/ic | |
parent | 69c687924e0aac6b65efd331cab86c86bfb61fc4 (diff) |
fix sparc64 console; same diff as miod
Diffstat (limited to 'sys/dev/ic')
-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 7c598af31e2..658f1216fa8 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.104 2005/07/18 14:36:34 deraadt Exp $ */ +/* $OpenBSD: com.c,v 1.105 2005/07/18 16:18:28 deraadt Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /* @@ -85,7 +85,7 @@ #include <machine/intr.h> #endif -#if !defined(__sparc__) && !defined(__sparc64__) +#if !defined(__sparc__) || defined(__sparc64__) #define COM_CONSOLE #include <dev/cons.h> #endif |