]> rtime.felk.cvut.cz Git - sojka/nv-tegra/linux-3.10.git/commitdiff
staging: comedi: das1800: use __comedi_request_region()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 10 Apr 2013 17:03:59 +0000 (10:03 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 11 Apr 2013 19:52:35 +0000 (12:52 -0700)
Use __comedi_request_region() to request the additional I/O region
used by this driver.

Remove the error message when the request_region() fails,
comedi_request_reqion() will output the error message if necessary.

For aesthetic reasons, rename the local variable 'retval' to
simply 'ret'.

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/das1800.c

index cf265c1be7d86e9559597ebc5dafe84900be58b5..7676201020290d8c599ad21bca27a45f0608a4d7 100644 (file)
@@ -1514,18 +1514,17 @@ static int das1800_attach(struct comedi_device *dev,
        unsigned int irq = it->options[1];
        unsigned int dma0 = it->options[2];
        unsigned int dma1 = it->options[3];
-       unsigned long iobase2;
        int board;
-       int retval;
+       int ret;
 
        devpriv = kzalloc(sizeof(*devpriv), GFP_KERNEL);
        if (!devpriv)
                return -ENOMEM;
        dev->private = devpriv;
 
-       retval = comedi_request_region(dev, it->options[0], DAS1800_SIZE);
-       if (retval)
-               return retval;
+       ret = comedi_request_region(dev, it->options[0], DAS1800_SIZE);
+       if (ret)
+               return ret;
 
        board = das1800_probe(dev);
        if (board < 0) {
@@ -1539,13 +1538,11 @@ static int das1800_attach(struct comedi_device *dev,
 
        /*  if it is an 'ao' board with fancy analog out then we need extra io ports */
        if (thisboard->ao_ability == 2) {
-               iobase2 = dev->iobase + IOBASE2;
-               if (!request_region(iobase2, DAS1800_SIZE, dev->board_name)) {
+               unsigned long iobase2 = dev->iobase + IOBASE2;
+
+               ret = __comedi_request_region(dev, iobase2, DAS1800_SIZE);
+               if (ret) {
                        release_region(dev->iobase, DAS1800_SIZE);
-                       dev_warn(dev->class_dev,
-                                "%s: I/O port conflict (%#lx,%d)\n",
-                                dev->board_name,
-                                iobase2, DAS1800_SIZE);
                        dev->iobase = 0;
                        return -EIO;
                }
@@ -1591,9 +1588,9 @@ static int das1800_attach(struct comedi_device *dev,
                break;
        }
 
-       retval = das1800_init_dma(dev, dma0, dma1);
-       if (retval < 0)
-               return retval;
+       ret = das1800_init_dma(dev, dma0, dma1);
+       if (ret < 0)
+               return ret;
 
        if (devpriv->ai_buf0 == NULL) {
                devpriv->ai_buf0 =
@@ -1602,9 +1599,9 @@ static int das1800_attach(struct comedi_device *dev,
                        return -ENOMEM;
        }
 
-       retval = comedi_alloc_subdevices(dev, 4);
-       if (retval)
-               return retval;
+       ret = comedi_alloc_subdevices(dev, 4);
+       if (ret)
+               return ret;
 
        /* analog input subdevice */
        s = &dev->subdevices[0];