Deleted Added
full compact
29c29
< * $Id: bt_isa.c,v 1.2 1998/09/24 10:43:42 bde Exp $
---
> * $Id: bt_isa.c,v 1.3 1998/10/10 00:44:12 imp Exp $
118c118
< * by a PCI or EISA adapter.
---
> * by a PCI, EISA or ISA adapter.
122,127c122,123
<
< /*
< * Make sure that we do not conflict with another device's
< * I/O address.
< */
< if (haveseen_isadev(dev, CC_IOADDR))
---
> dev->id_iobase = bt_isa_ports[port_index].addr;
> if (haveseen_isadev(dev, CC_IOADDR | CC_QUIET))
181d176
< dev->id_iobase = bt_isa_ports[port_index].addr;
185,202d179
< /*
< * OK, check to make sure that we're not stepping on
< * someone else's IRQ or DRQ
< */
< if (haveseen_isadev(dev, CC_DRQ)) {
< printf("bt_isa_probe: Bt card at I/O 0x%x's drq %d "
< "conflicts, ignoring card.\n", dev->id_iobase,
< dev->id_drq);
< bt_free(bt);
< return 0;
< }
< if (haveseen_isadev(dev, CC_IRQ)) {
< printf("bt_isa_probe: Bt card at I/O 0x%x's irq %d "
< "conflicts, ignoring card.\n", dev->id_iobase,
< config_data.irq + 9);
< bt_free(bt);
< return 0;
< }