diff options
author | 2003-10-31 04:07:10 +0000 | |
---|---|---|
committer | 2003-10-31 04:07:10 +0000 | |
commit | f4ee5869f41a40bdff5e68bdc63f1309c5570cd9 (patch) | |
tree | 650ec42b031bbb2f01c80492b8cecc85105609a6 | |
parent | Add pegasos. (diff) | |
download | wireguard-openbsd-f4ee5869f41a40bdff5e68bdc63f1309c5570cd9.tar.xz wireguard-openbsd-f4ee5869f41a40bdff5e68bdc63f1309c5570cd9.zip |
Use isa iot for pegasos com console attachment, perhaps this could
be adopted MI?
-rw-r--r-- | sys/dev/ic/com.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index c6b39f06882..28484d87058 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.94 2003/10/03 16:44:51 miod Exp $ */ +/* $OpenBSD: com.c,v 1.95 2003/10/31 04:07:10 drahn Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /* @@ -1460,6 +1460,8 @@ comcnprobe(cp) bus_space_tag_t iot = &arc_bus_io; #elif defined(hppa) bus_space_tag_t iot = &hppa_bustag; +#elif defined(__pegasos__) + bus_space_tag_t iot = MD_ISA_IOT; #else bus_space_tag_t iot = 0; #endif |