]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: pcl818: remove board attach noise
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 26 Nov 2013 23:42:17 +0000 (16:42 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Dec 2013 17:20:22 +0000 (09:20 -0800)
These messages are just added noise. Remove them.

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

index 931aed0e2c233da654867bdd08a0434ca395f3da..945a5dd4ec483bb89c3a2d155783d74de6749a03 100644 (file)
@@ -1234,16 +1234,10 @@ static int pcl818_attach(struct comedi_device *dev, struct comedi_devconfig *it)
                irq = it->options[1];
                if (irq) {      /* we want to use IRQ */
                        if (((1 << irq) & board->IRQbits) == 0) {
-                               printk
-                                   (", IRQ %u is out of allowed range, DISABLING IT",
-                                    irq);
                                irq = 0;        /* Bad IRQ */
                        } else {
                                if (request_irq(irq, interrupt_pcl818, 0,
                                                dev->board_name, dev)) {
-                                       printk
-                                           (", unable to allocate IRQ %u, DISABLING IT",
-                                            irq);
                                        irq = 0;        /* Can't use IRQ */
                                }
                        }
@@ -1308,11 +1302,9 @@ no_dma:
                if (check_single_ended(dev->iobase)) {
                        s->n_chan = board->n_aichan_se;
                        s->subdev_flags |= SDF_COMMON | SDF_GROUND;
-                       printk(", %dchans S.E. DAC", s->n_chan);
                } else {
                        s->n_chan = board->n_aichan_diff;
                        s->subdev_flags |= SDF_DIFF;
-                       printk(", %dchans DIFF DAC", s->n_chan);
                }
                s->maxdata = board->ai_maxdata;
                s->len_chanlist = s->n_chan;
@@ -1431,8 +1423,6 @@ no_dma:
 
        pcl818_reset(dev);
 
-       printk("\n");
-
        return 0;
 }