Deleted Added
full compact
29c29
< * $Id: bt_isa.c,v 1.1 1998/09/15 07:32:54 gibbs Exp $
---
> * $Id: bt_isa.c,v 1.2 1998/09/24 10:43:42 bde Exp $
104a105
> max_port_index = port_index;
121a123,129
> /*
> * Make sure that we do not conflict with another device's
> * I/O address.
> */
> if (haveseen_isadev(dev, CC_IOADDR))
> continue;
>
175a184,202
>
> /*
> * 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;
> }