staging: comedi: dt2815: convert printk's in dt2815_ao_insn()
Convert the printk(KERN_WARNING messages in this function to 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
c5a9595b23
commit
38fa4c4cfd
1 changed files with 6 additions and 4 deletions
|
@ -107,8 +107,9 @@ static int dt2815_ao_insn(struct comedi_device *dev, struct comedi_subdevice *s,
|
||||||
|
|
||||||
status = dt2815_wait_for_status(dev, 0x00);
|
status = dt2815_wait_for_status(dev, 0x00);
|
||||||
if (status != 0) {
|
if (status != 0) {
|
||||||
printk(KERN_WARNING "dt2815: failed to write low byte "
|
dev_dbg(dev->class_dev,
|
||||||
"on %d reason %x\n", chan, status);
|
"failed to write low byte on %d reason %x\n",
|
||||||
|
chan, status);
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,8 +117,9 @@ static int dt2815_ao_insn(struct comedi_device *dev, struct comedi_subdevice *s,
|
||||||
|
|
||||||
status = dt2815_wait_for_status(dev, 0x10);
|
status = dt2815_wait_for_status(dev, 0x10);
|
||||||
if (status != 0x10) {
|
if (status != 0x10) {
|
||||||
printk(KERN_WARNING "dt2815: failed to write high byte "
|
dev_dbg(dev->class_dev,
|
||||||
"on %d reason %x\n", chan, status);
|
"failed to write high byte on %d reason %x\n",
|
||||||
|
chan, status);
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
devpriv->ao_readback[chan] = data[i];
|
devpriv->ao_readback[chan] = data[i];
|
||||||
|
|
Loading…
Add table
Reference in a new issue