diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1997-03-12 20:17:38 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1997-03-12 20:17:38 +0000 |
commit | fb020bd26d9963e441e407675ee1217bfb57d284 (patch) | |
tree | 1429b8f97a88162752c077f9ad4b59475c1fd2e1 /sys/dev | |
parent | 9ccf28770b6881a047befff80b420009865f618f (diff) |
The stupid "use console before configured" scheeme strikes again :-)
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/com.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index 32a15ae741d..9aaf899d440 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.31 1997/03/06 07:07:43 tholo Exp $ */ +/* $OpenBSD: com.c,v 1.32 1997/03/12 20:17:37 pefo Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /*- @@ -1433,23 +1433,27 @@ ohfudge: */ #include <dev/cons.h> +#if NCOM_PICA +#include <arc/arc/arctype.h> + extern int cputype; +#undef CONADDR + extern int CONADDR; +#endif + void comcnprobe(cp) struct consdev *cp; { /* XXX NEEDS TO BE FIXED XXX */ +#ifdef arc + bus_space_tag_t iot = &arc_bus; +#else bus_space_tag_t iot = 0; +#endif bus_space_handle_t ioh; int found; -#if NCOM_PICA - /* XXX */ -#include <arc/arc/arctype.h> - extern int cputype; - - if(cputype != ACER_PICA_61) - return; -#endif + comconsiot = iot; if (bus_space_map(iot, CONADDR, COM_NPORTS, 0, &ioh)) { cp->cn_pri = CN_DEAD; return; @@ -1480,10 +1484,6 @@ comcninit(cp) struct consdev *cp; { -#if 0 - XXX NEEDS TO BE FIXED XXX - comconsiot = ???; -#endif if (bus_space_map(comconsiot, CONADDR, COM_NPORTS, 0, &comconsioh)) panic("comcninit: mapping failed"); |