Commit 50dbda4a authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: dt282x: convert dt282x_ao_inttrig() messages

Convert the messages in this function to dev_err().
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e0bee2de
...@@ -885,7 +885,7 @@ static int dt282x_ao_inttrig(struct comedi_device *dev, ...@@ -885,7 +885,7 @@ static int dt282x_ao_inttrig(struct comedi_device *dev,
size = cfc_read_array_from_buffer(s, devpriv->dma[0].buf, size = cfc_read_array_from_buffer(s, devpriv->dma[0].buf,
devpriv->dma_maxsize); devpriv->dma_maxsize);
if (size == 0) { if (size == 0) {
printk(KERN_ERR "dt282x: AO underrun\n"); dev_err(dev->class_dev, "AO underrun\n");
return -EPIPE; return -EPIPE;
} }
prep_ao_dma(dev, 0, size); prep_ao_dma(dev, 0, size);
...@@ -893,7 +893,7 @@ static int dt282x_ao_inttrig(struct comedi_device *dev, ...@@ -893,7 +893,7 @@ static int dt282x_ao_inttrig(struct comedi_device *dev,
size = cfc_read_array_from_buffer(s, devpriv->dma[1].buf, size = cfc_read_array_from_buffer(s, devpriv->dma[1].buf,
devpriv->dma_maxsize); devpriv->dma_maxsize);
if (size == 0) { if (size == 0) {
printk(KERN_ERR "dt282x: AO underrun\n"); dev_err(dev->class_dev, "AO underrun\n");
return -EPIPE; return -EPIPE;
} }
prep_ao_dma(dev, 1, size); prep_ao_dma(dev, 1, size);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment