diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-06-20 17:56:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-06-20 17:56:25 +0000 |
commit | 586a831be34109f41637ebeda5da9caf92e49b80 (patch) | |
tree | 83a13059f9c431b0328e22fd28654b95cc0b1afc /sys | |
parent | 0c9ae9728f90616a5c2792d45ffa54da8b32cc2a (diff) |
Avoid using I/O port 0x370 since this is used by onboard audio on
some laptops. Only seems to cause problems with some card, notably
wavelan and aironet.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isa/i82365_isasubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/i82365_isasubr.c b/sys/dev/isa/i82365_isasubr.c index 929239cd995..eb51eeb701d 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.11 2000/04/08 05:50:53 aaron Exp $ */ +/* $OpenBSD: i82365_isasubr.c,v 1.12 2000/06/20 17:56:24 millert Exp $ */ /* $NetBSD: i82365_isasubr.c,v 1.1 1998/06/07 18:28:31 sommerfe Exp $ */ /* @@ -86,7 +86,7 @@ char pcic_isa_intr_list[] = { }; struct pcic_ranges pcic_isa_addr[] = { - { 0x340, 0x040 }, + { 0x340, 0x030 }, { 0x300, 0x030 }, { 0x390, 0x020 }, { 0x400, 0xbff }, |