Browse Source

staging: comedi: addi_apci_1032: remove dw_AiBase

This board does not use the ioremap'ed PCI bar 3 memory address.
Remove the ioremap and iounmap of that region.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
H Hartley Sweeten 12 years ago
parent
commit
09284a77b2
1 changed files with 0 additions and 4 deletions
  1. 0 4
      drivers/staging/comedi/drivers/addi_apci_1032.c

+ 0 - 4
drivers/staging/comedi/drivers/addi_apci_1032.c

@@ -90,8 +90,6 @@ static int apci1032_attach_pci(struct comedi_device *dev,
 
 	dev->iobase = pci_resource_start(pcidev, 2);
 	devpriv->iobase = pci_resource_start(pcidev, 2);
-	devpriv->dw_AiBase = ioremap(pci_resource_start(pcidev, 3),
-				     this_board->i_IorangeBase3);
 	devpriv->i_IobaseReserved = pci_resource_start(pcidev, 3);
 
 	/* Initialize parameters that can be overridden in EEPROM */
@@ -198,8 +196,6 @@ static void apci1032_detach(struct comedi_device *dev)
 			i_APCI1032_Reset(dev);
 		if (dev->irq)
 			free_irq(dev->irq, dev);
-		if (devpriv->dw_AiBase)
-			iounmap(devpriv->dw_AiBase);
 	}
 	if (pcidev) {
 		if (dev->iobase)