From d8af98c29ed81257aada4c422bdadcce5f873a71 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Wed, 7 Apr 2004 21:56:20 +0000 Subject: [PATCH] Back out last bad commit (again!) --- sys/dev/sio/sio.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 64a49bbe3cc7..192973d8061a 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -1788,20 +1788,9 @@ siointr1(com) } } line_status = inb(com->line_status_port); - if (line_status == 0xff) { - printf("sio%d: spouting nonsense -- disabled.\n", - com->unit); - com->gone = 1; - break; - } + /* input event? (check first to help avoid overruns) */ while (line_status & LSR_RCV_MASK) { - if (line_status == 0xff) { - printf("sio%d: linestats bogus -- disabled.\n", - com->unit); - com->gone = 1; - return; - } /* break/unnattached error bits or real input? */ if (!(line_status & LSR_RXRDY)) recv_data = 0;