]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: cb_das16_cs: probe for the device first
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 26 Jun 2012 00:11:56 +0000 (17:11 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 26 Jun 2012 22:30:53 +0000 (15:30 -0700)
During the attach of the comedi_driver, the device type probe
can fail. We should do the probe before requesting the irq
for the driver.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/cb_das16_cs.c

index 2d8ec680a95691ad9d48f6ccc2823b6158ebb823..20d77cfe92813d7a13c448e99a72acb9d6b93dbf 100644 (file)
@@ -454,6 +454,13 @@ static int das16cs_attach(struct comedi_device *dev,
        if (!link)
                return -EIO;
 
+       dev->board_ptr = das16cs_probe(dev, link);
+       if (!dev->board_ptr)
+               return -EIO;
+       thisboard = comedi_board(dev);
+
+       dev->board_name = thisboard->name;
+
        dev->iobase = link->resource[0]->start;
        dev_dbg(dev->class_dev, "I/O base=0x%04lx\n", dev->iobase);
 
@@ -461,23 +468,14 @@ static int das16cs_attach(struct comedi_device *dev,
        for (i = 0; i < 48; i += 2)
                dev_dbg(dev->class_dev, "%04x\n", inw(dev->iobase + i));
 
-
        ret = request_irq(link->irq, das16cs_interrupt,
                          IRQF_SHARED, "cb_das16_cs", dev);
        if (ret < 0)
                return ret;
-
        dev->irq = link->irq;
 
        dev_dbg(dev->class_dev, "irq=%u\n", dev->irq);
 
-       dev->board_ptr = das16cs_probe(dev, link);
-       if (!dev->board_ptr)
-               return -EIO;
-       thisboard = comedi_board(dev);
-
-       dev->board_name = thisboard->name;
-
        if (alloc_private(dev, sizeof(struct das16cs_private)) < 0)
                return -ENOMEM;