diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-27 21:35:47 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-27 21:35:47 +0000 |
commit | 41cbc5d554dd669b6c4c5d18df51832b5edccc70 (patch) | |
tree | 08316d9aaf95090706c53328399eb9dbe811c27c /sys/dev/ic | |
parent | d68f275b0ad3ac65ef6db9fc1f1f56aaece17036 (diff) |
Enable #if 0'd code in comcnputc() so serial console works correctly;
art@openbsd.org
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/com.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index f8c9a894764..a857e1d00ed 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.64 2001/09/27 15:37:33 art Exp $ */ +/* $OpenBSD: com.c,v 1.65 2001/09/27 21:35:46 millert Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /* @@ -2005,8 +2005,6 @@ comcnputc(dev, c) dev_t dev; int c; { -#if 0 - /* XXX not needed? */ bus_space_tag_t iot = comconsiot; bus_space_handle_t ioh = comconsioh; @@ -2014,7 +2012,6 @@ comcnputc(dev, c) cominit(iot, ioh, comdefaultrate); comconsinit = 1; } -#endif com_common_putc(comconsiot, comconsioh, c); } |