summaryrefslogtreecommitdiffstats
path: root/sys/dev/sio
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1993-07-20 00:22:30 +0000
committerjkh <jkh@FreeBSD.org>1993-07-20 00:22:30 +0000
commit834f9415ecb18af0e1d924aeba1330464cc8737c (patch)
tree5aa7886712e76f2a1a9010452cb2251be106d3d5 /sys/dev/sio
parente16c969b2fa6c61bb2ee7eda9daeaecce301f416 (diff)
downloadFreeBSD-src-834f9415ecb18af0e1d924aeba1330464cc8737c.zip
FreeBSD-src-834f9415ecb18af0e1d924aeba1330464cc8737c.tar.gz
Removed check for interrupting board before interrupts were enabled.
This should result in more AST clones getting seen.
Diffstat (limited to 'sys/dev/sio')
-rw-r--r--sys/dev/sio/sio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index abe1b4b..1b3d3ac 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -41,7 +41,7 @@
* into the patch kit. Added in sioselect
* from com.c. Added port 4 support.
*/
-static char rcsid[] = "$Header: /a/cvs/386BSD/src/sys.386bsd/i386/isa/sio.c,v 1.2 1993/07/15 17:53:12 davidg Exp $";
+static char rcsid[] = "$Header: /a/cvs/386BSD/src/sys.386bsd/i386/isa/sio.c,v 1.3 1993/07/18 21:27:57 rgrimes Exp $";
#include "sio.h"
#if NSIO > 0
@@ -377,7 +377,6 @@ sioprobe(dev)
if ( inb(iobase + com_cfcr) != CFCR_8BITS
|| inb(iobase + com_ier) != IER_ETXRDY
|| inb(iobase + com_mcr) != MCR_IENABLE
- || !isa_irq_pending(dev)
|| (inb(iobase + com_iir) & IIR_IMASK) != IIR_TXRDY
|| isa_irq_pending(dev)
|| (inb(iobase + com_iir) & IIR_IMASK) != IIR_NOPEND)
OpenPOWER on IntegriCloud