]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: ni_atmio16d: tidy up the irq support in atmio16d_attach()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 26 Nov 2013 23:42:30 +0000 (16:42 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Dec 2013 17:20:23 +0000 (09:20 -0800)
Tidy up the code that does the request_irq().

Only hookup the commad support if the irq was sucessfully requested.

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

index 95e98a8cb6a0b55fdca701c993fd999203c23372..35cadc38b7fa56398c0882769f62e34de5f3fd31 100644 (file)
@@ -631,7 +631,6 @@ static int atmio16d_attach(struct comedi_device *dev,
        const struct atmio16_board_t *board = comedi_board(dev);
        struct atmio16d_private *devpriv;
        struct comedi_subdevice *s;
-       unsigned int irq;
        int ret;
 
        ret = comedi_request_region(dev, it->options[0], ATMIO16D_SIZE);
@@ -649,19 +648,11 @@ static int atmio16d_attach(struct comedi_device *dev,
        /* reset the atmio16d hardware */
        reset_atmio16d(dev);
 
-       /* check if our interrupt is available and get it */
-       irq = it->options[1];
-       if (irq) {
-
-               ret = request_irq(irq, atmio16d_interrupt, 0, "atmio16d", dev);
-               if (ret < 0) {
-                       printk(KERN_INFO "failed to allocate irq %u\n", irq);
-                       return ret;
-               }
-               dev->irq = irq;
-               printk(KERN_INFO "( irq = %u )\n", irq);
-       } else {
-               printk(KERN_INFO "( no irq )");
+       if (it->options[1]) {
+               ret = request_irq(it->options[1], atmio16d_interrupt, 0,
+                                 dev->board_name, dev);
+               if (ret == 0)
+                       dev->irq = it->options[1];
        }
 
        /* set device options */
@@ -677,16 +668,11 @@ static int atmio16d_attach(struct comedi_device *dev,
 
        /* setup sub-devices */
        s = &dev->subdevices[0];
-       dev->read_subdev = s;
        /* ai subdevice */
        s->type = COMEDI_SUBD_AI;
-       s->subdev_flags = SDF_READABLE | SDF_GROUND | SDF_CMD_READ;
+       s->subdev_flags = SDF_READABLE | SDF_GROUND;
        s->n_chan = (devpriv->adc_mux ? 16 : 8);
-       s->len_chanlist = 16;
        s->insn_read = atmio16d_ai_insn_read;
-       s->do_cmdtest = atmio16d_ai_cmdtest;
-       s->do_cmd = atmio16d_ai_cmd;
-       s->cancel = atmio16d_ai_cancel;
        s->maxdata = 0xfff;     /* 4095 decimal */
        switch (devpriv->adc_range) {
        case adc_bipolar10:
@@ -699,6 +685,14 @@ static int atmio16d_attach(struct comedi_device *dev,
                s->range_table = &range_atmio16d_ai_unipolar;
                break;
        }
+       if (dev->irq) {
+               dev->read_subdev = s;
+               s->subdev_flags |= SDF_CMD_READ;
+               s->len_chanlist = 16;
+               s->do_cmdtest = atmio16d_ai_cmdtest;
+               s->do_cmd = atmio16d_ai_cmd;
+               s->cancel = atmio16d_ai_cancel;
+       }
 
        /* ao subdevice */
        s = &dev->subdevices[1];