diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1998-12-19 15:58:25 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1998-12-19 15:58:25 +0000 |
commit | b511c997037164c113af9b911ab6f8d6e7a432d9 (patch) | |
tree | 9064ddf1875370e780d048cafff2272d34128f80 | |
parent | 2456ad84d7be29286157f9dd1238960fd41b58f0 (diff) |
Remove irq 5 and 7 from irqmask. These are commonly used by soundcard devices.
-rw-r--r-- | sys/dev/isa/i82365_isasubr.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/isa/i82365_isasubr.c b/sys/dev/isa/i82365_isasubr.c index e58764c3a9e..7eb1608ec08 100644 --- a/sys/dev/isa/i82365_isasubr.c +++ b/sys/dev/isa/i82365_isasubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i82365_isasubr.c,v 1.1 1998/09/11 08:02:50 fgsch Exp $ */ +/* $OpenBSD: i82365_isasubr.c,v 1.2 1998/12/19 15:58:24 fgsch Exp $ */ /* $NetBSD: i82365_isasubr.c,v 1.1 1998/06/07 18:28:31 sommerfe Exp $ */ /* @@ -83,13 +83,10 @@ int pcic_isa_alloc_iosize = PCIC_ISA_ALLOC_IOSIZE; * IRQs for PCMCIA slots. Useful if order of probing would screw up other * devices, or if PCIC hardware/cards have trouble with certain interrupt * lines. - * - * We disable IRQ 10 by default, since some common laptops (namely, the - * NEC Versa series) reserve IRQ 10 for the docking station SCSI interface. */ #ifndef PCIC_ISA_INTR_ALLOC_MASK -#define PCIC_ISA_INTR_ALLOC_MASK 0xfbff +#define PCIC_ISA_INTR_ALLOC_MASK 0xff5f #endif int pcic_isa_intr_alloc_mask = PCIC_ISA_INTR_ALLOC_MASK; |