staging: comedi: dt2814: remove bad printk noise
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 26 Nov 2013 23:41:54 +0000 (16:41 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Dec 2013 17:20:21 +0000 (09:20 -0800)
This printk could spew a lot of noise while waiting for the ai conversion
to complete. Just remove it.

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

index 90defd5..3a05588 100644 (file)
@@ -80,7 +80,6 @@ static int dt2814_ai_insn_read(struct comedi_device *dev,
                outb(chan, dev->iobase + DT2814_CSR);
                for (i = 0; i < DT2814_TIMEOUT; i++) {
                        status = inb(dev->iobase + DT2814_CSR);
-                       printk(KERN_INFO "dt2814: status: %02x\n", status);
                        udelay(10);
                        if (status & DT2814_FINISH)
                                break;