diff options
author | imp <imp@FreeBSD.org> | 2004-04-07 21:56:20 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2004-04-07 21:56:20 +0000 |
commit | 7f957a47b4e95a7f3efa529ec001f9b773afc024 (patch) | |
tree | 7dfc145ffeb3770a3f8dbbe40a7ab5203425cb87 | |
parent | b49b7fe7994689a25dfc2162fe02f1d030360089 (diff) | |
download | FreeBSD-src-7f957a47b4e95a7f3efa529ec001f9b773afc024.zip FreeBSD-src-7f957a47b4e95a7f3efa529ec001f9b773afc024.tar.gz |
Back out last bad commit (again!)
-rw-r--r-- | sys/dev/sio/sio.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 64a49bb..192973d 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; |