summaryrefslogtreecommitdiffstats
path: root/sys/dev/sio/sio.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/sio/sio.c')
-rw-r--r--sys/dev/sio/sio.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index 776a50c..a836201 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: sio.c,v 1.205 1998/06/03 12:30:10 bde Exp $
+ * $Id: sio.c,v 1.206 1998/06/07 17:10:58 dfr Exp $
*/
#include "opt_comconsole.h"
@@ -1887,14 +1887,11 @@ repeat:
com = com_addr(unit);
if (com == NULL)
continue;
- if (com->gone)
- continue;
tp = com->tp;
- if (tp == NULL) {
+ if (tp == NULL || com->gone) {
/*
- * XXX forget any events related to closed devices
- * (actually never opened devices) so that we don't
- * loop.
+ * Discard any events related to never-opened or
+ * going-away devices.
*/
disable_intr();
incc = com->iptr - com->ibuf;
@@ -1905,10 +1902,6 @@ repeat:
}
com_events -= incc;
enable_intr();
- if (incc != 0)
- log(LOG_DEBUG,
- "sio%d: %d events for device with no tp\n",
- unit, incc);
continue;
}
OpenPOWER on IntegriCloud