staging: comedi: dt2815: convert printk's in dt2815_attach()
These messages don't appear to be important enough to warrent KERN_INFO and KERN_WARNING levels. Convert them dev_dbg(). 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>
This commit is contained in:
parent
38fa4c4cfd
commit
5b7b0eb2b2
@ -202,12 +202,13 @@ static int dt2815_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
|||||||
unsigned int program;
|
unsigned int program;
|
||||||
program = (it->options[4] & 0x3) << 3 | 0x7;
|
program = (it->options[4] & 0x3) << 3 | 0x7;
|
||||||
outb(program, dev->iobase + DT2815_DATA);
|
outb(program, dev->iobase + DT2815_DATA);
|
||||||
printk(KERN_INFO ", program: 0x%x (@t=%d)\n",
|
dev_dbg(dev->class_dev, "program: 0x%x (@t=%d)\n",
|
||||||
program, i);
|
program, i);
|
||||||
break;
|
break;
|
||||||
} else if (status != 0x00) {
|
} else if (status != 0x00) {
|
||||||
printk(KERN_WARNING "dt2815: unexpected status 0x%x "
|
dev_dbg(dev->class_dev,
|
||||||
"(@t=%d)\n", status, i);
|
"unexpected status 0x%x (@t=%d)\n",
|
||||||
|
status, i);
|
||||||
if (status & 0x60)
|
if (status & 0x60)
|
||||||
outb(0x00, dev->iobase + DT2815_STATUS);
|
outb(0x00, dev->iobase + DT2815_STATUS);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user