summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2003-10-31 04:07:11 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2003-10-31 04:07:11 +0000
commite80d9462d294d452ecdcd5999f57bb51c225e243 (patch)
tree6b1afa2b0fc3cdfd8405a4d35a903a1b634b8f52 /sys/dev
parent1a72450edaf21c60051d1c10abf9f3339d4bbdcc (diff)
Use isa iot for pegasos com console attachment, perhaps this could
be adopted MI?
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/com.c4
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