OSDN Git Service

staging: comedi: ni_atmio: remove board attach noise
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Fri, 18 Jul 2014 20:29:54 +0000 (13:29 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Jul 2014 23:08:01 +0000 (16:08 -0700)
Remove the printk messages in the (*attach) of this driver. These are
just added noise.

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

index c613423..8af5a0f 100644 (file)
@@ -338,25 +338,18 @@ static int ni_atmio_attach(struct comedi_device *dev,
 
        dev->board_ptr = ni_boards + board;
        boardtype = comedi_board(dev);
-
-       printk(" %s", boardtype->name);
        dev->board_name = boardtype->name;
 
        /* irq stuff */
 
        if (irq != 0) {
-               if (irq > 15 || ni_irqpin[irq] == -1) {
-                       printk(" invalid irq %u\n", irq);
+               if (irq > 15 || ni_irqpin[irq] == -1)
                        return -EINVAL;
-               }
-               printk(" ( irq = %u )", irq);
                ret = request_irq(irq, ni_E_interrupt, 0,
                                  "ni_atmio", dev);
 
-               if (ret < 0) {
-                       printk(" irq not available\n");
+               if (ret < 0)
                        return -EINVAL;
-               }
                dev->irq = irq;
        }