summaryrefslogtreecommitdiff
path: root/sys/dev/ic/com.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ic/com.c')
-rw-r--r--sys/dev/ic/com.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c
index 1d76f57cdfa..c6b39f06882 100644
--- a/sys/dev/ic/com.c
+++ b/sys/dev/ic/com.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com.c,v 1.93 2003/09/23 16:51:12 millert Exp $ */
+/* $OpenBSD: com.c,v 1.94 2003/10/03 16:44:51 miod Exp $ */
/* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */
/*
@@ -403,7 +403,6 @@ com_detach(self, flags)
/* Detach and free the tty. */
if (sc->sc_tty) {
- tty_detach(sc->sc_tty);
ttyfree(sc->sc_tty);
}
@@ -483,7 +482,6 @@ comopen(dev, flag, mode, p)
s = spltty();
if (!sc->sc_tty) {
tp = sc->sc_tty = ttymalloc();
- tty_attach(tp);
} else
tp = sc->sc_tty;
splx(s);