Deleted Added
full compact
31c31
< * $Id: aha_isa.c,v 1.1 1998/09/15 07:39:55 gibbs Exp $
---
> * $Id: aha_isa.c,v 1.2 1998/09/24 10:43:42 bde Exp $
103a104
> max_port_index = port_index;
120a122,128
> /*
> * Make sure that we do not conflict with another device's
> * I/O address.
> */
> if (haveseen_isadev(dev, CC_IOADDR))
> continue;
>
168a177,195
>
> /*
> * OK, check to make sure that we're not stepping on
> * someone else's IRQ or DRQ
> */
> if (haveseen_isadev(dev, CC_DRQ)) {
> printf("aha_isa_probe: Aha card at I/O 0x%x's drq %d "
> "conflicts, ignoring card.\n", dev->id_iobase,
> dev->id_drq);
> aha_free(aha);
> return 0;
> }
> if (haveseen_isadev(dev, CC_IRQ)) {
> printf("aha_isa_probe: Aha card at I/O 0x%x's irq %d "
> "conflicts, ignoring card.\n", dev->id_iobase,
> config_data.irq + 9);
> aha_free(aha);
> return 0;
> }