diff options
author | gibbs <gibbs@FreeBSD.org> | 1998-10-30 02:06:44 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1998-10-30 02:06:44 +0000 |
commit | 0fcabcf90e9664f8f2c243b394255dda6012386f (patch) | |
tree | 96d4e41b952d4b9dfe09856471d27ef877efb86a /sys/dev/buslogic/bt.c | |
parent | 02085b8fcd4391a1121f8846161cd62e9d06ccb0 (diff) | |
download | FreeBSD-src-0fcabcf90e9664f8f2c243b394255dda6012386f.zip FreeBSD-src-0fcabcf90e9664f8f2c243b394255dda6012386f.tar.gz |
Do not disable the ISA compatibility window if it is the same value as
that set for our PCI IO address space. This can happen on the BT-946.
Diffstat (limited to 'sys/dev/buslogic/bt.c')
-rw-r--r-- | sys/dev/buslogic/bt.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c index 7196844..8c4b3e2 100644 --- a/sys/dev/buslogic/bt.c +++ b/sys/dev/buslogic/bt.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt.c,v 1.6 1998/10/15 23:17:58 gibbs Exp $ + * $Id: bt.c,v 1.7 1998/10/15 23:46:28 gibbs Exp $ */ /* @@ -826,6 +826,12 @@ bt_check_probed_iop(u_int ioport) return (1); } +u_int +bt_fetch_isa_iop(isa_compat_io_t port) +{ + return (bt_isa_ports[port].addr); +} + void bt_mark_probed_bio(isa_compat_io_t port) { |