]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: s626: remove 'got_regions' from private data
authorH Hartley Sweeten <hartleys@visionengravers.com>
Mon, 24 Sep 2012 20:23:07 +0000 (13:23 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Sep 2012 16:37:30 +0000 (09:37 -0700)
This variable is only used as a flag to indicate that the pci device
has been enabled and needs to be disabled in the detach. Use the
comedi_device 'iobase' for this and remove the private data variable.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/s626.c

index 93e55c3145980ed1b82c848106e8261cff8fb062..12709b0bbba1d490c12db1a93dc2c2094d18ec08 100644 (file)
@@ -80,7 +80,6 @@ INSN_CONFIG instructions:
 
 struct s626_private {
        void __iomem *base_addr;
-       int got_regions;
        short allocatedBuf;
        uint8_t ai_cmd_running; /*  ai_cmd is running */
        uint8_t ai_continous;   /*  continous acquisition */
@@ -2460,7 +2459,7 @@ static int s626_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
        ret = comedi_pci_enable(pcidev, dev->board_name);
        if (ret)
                return ret;
-       devpriv->got_regions = 1;
+       dev->iobase = 1;        /* detach needs this */
 
        resourceStart = pci_resource_start(pcidev, 0);
 
@@ -2512,7 +2511,6 @@ static int s626_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
        if (ret)
                return ret;
 
-       dev->iobase = (unsigned long)devpriv->base_addr;
        dev->irq = pcidev->irq;
 
        /* set up interrupt handler */
@@ -2893,7 +2891,7 @@ static void s626_detach(struct comedi_device *dev)
                        iounmap(devpriv->base_addr);
        }
        if (pcidev) {
-               if (devpriv->got_regions)
+               if (dev->iobase)
                        comedi_pci_disable(pcidev);
        }
 }