staging: comedi: pcmmio: remove kernel messages about IRQ
authorH Hartley Sweeten <hartleys@visionengravers.com>
Mon, 17 Sep 2012 20:16:45 +0000 (13:16 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Sep 2012 22:03:51 +0000 (15:03 -0700)
These messages are just added noise.

They also cause some sparse warnings due to MAX_ASICS evaluating
as 1. This causes the local variable 'irq' to be 'unsigned int irq[1]',
which makes the 'irq[1]' access invalid.

Just remove the messages.

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

index 9a9af0b..a10bf0a 100644 (file)
@@ -1197,15 +1197,6 @@ static int pcmmio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
                                 * multiple irqs..
                                 */
 
-       if (irq[0]) {
-               printk(KERN_DEBUG "comedi%d: irq: %u\n", dev->minor, irq[0]);
-               if (board->dio_num_asics == 2 && irq[1])
-                       printk(KERN_DEBUG "comedi%d: second ASIC irq: %u\n",
-                                       dev->minor, irq[1]);
-       } else {
-               printk(KERN_INFO "comedi%d: (IRQ mode disabled)\n", dev->minor);
-       }
-
        printk(KERN_INFO "comedi%d: attached\n", dev->minor);
 
        return 1;