patch-2.4.19 linux-2.4.19/drivers/atm/horizon.c
Next file: linux-2.4.19/drivers/block/Config.in
Previous file: linux-2.4.19/drivers/atm/fore200e.c
Back to the patch index
Back to the overall index
- Lines: 41
- Date:
Fri Aug 2 17:39:43 2002
- Orig file:
linux-2.4.18/drivers/atm/horizon.c
- Orig date:
Thu Sep 13 15:21:32 2001
diff -urN linux-2.4.18/drivers/atm/horizon.c linux-2.4.19/drivers/atm/horizon.c
@@ -2765,15 +2765,13 @@
u32 * membase = bus_to_virt (pci_resource_start (pci_dev, 1));
u8 irq = pci_dev->irq;
- // check IO region
- if (check_region (iobase, HRZ_IO_EXTENT)) {
- PRINTD (DBG_WARN, "IO range already in use");
- continue;
- }
+ /* XXX DEV_LABEL is a guess */
+ if (!request_region (iobase, HRZ_IO_EXTENT, DEV_LABEL))
+ continue;
if (pci_enable_device (pci_dev))
continue;
-
+
dev = kmalloc (sizeof(hrz_dev), GFP_KERNEL);
if (!dev) {
// perhaps we should be nice: deregister all adapters and abort?
@@ -2807,9 +2805,6 @@
dev->atm_dev->dev_data = (void *) dev;
dev->pci_dev = pci_dev;
- /* XXX DEV_LABEL is a guess */
- request_region (iobase, HRZ_IO_EXTENT, DEV_LABEL);
-
// enable bus master accesses
pci_set_master (pci_dev);
@@ -2901,8 +2896,10 @@
atm_dev_deregister (dev->atm_dev);
} /* atm_dev_register */
free_irq (irq, dev);
+
} /* request_irq */
kfree (dev);
+ release_region(iobase, HRZ_IO_EXTENT);
} /* kmalloc and while */
return devs;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)