]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: addi_apci_1032: remove dw_AiBase
authorH Hartley Sweeten <hartleys@visionengravers.com>
Mon, 5 Nov 2012 21:37:08 +0000 (14:37 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 6 Nov 2012 08:30:55 +0000 (09:30 +0100)
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>
drivers/staging/comedi/drivers/addi_apci_1032.c

index 8ea9feac4e27c6ad9d8757773b3139fdcbf20195..384ccf64db24e88b6188579c832d5c755ab78517 100644 (file)
@@ -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)