mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 05:41:55 +00:00
staging: comedi: dt282x: convert dt282x_ao_dma_interrupt() messages
Convert the messages in this function to dev_err(). 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
427f35222e
commit
01112bf1ef
@ -314,7 +314,7 @@ static void dt282x_ao_dma_interrupt(struct comedi_device *dev)
|
|||||||
outw(devpriv->supcsr | DT2821_CLRDMADNE, dev->iobase + DT2821_SUPCSR);
|
outw(devpriv->supcsr | DT2821_CLRDMADNE, dev->iobase + DT2821_SUPCSR);
|
||||||
|
|
||||||
if (!s->async->prealloc_buf) {
|
if (!s->async->prealloc_buf) {
|
||||||
printk(KERN_ERR "async->data disappeared. dang!\n");
|
dev_err(dev->class_dev, "no buffer in %s\n", __func__);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -327,7 +327,7 @@ static void dt282x_ao_dma_interrupt(struct comedi_device *dev)
|
|||||||
|
|
||||||
size = cfc_read_array_from_buffer(s, ptr, devpriv->dma_maxsize);
|
size = cfc_read_array_from_buffer(s, ptr, devpriv->dma_maxsize);
|
||||||
if (size == 0) {
|
if (size == 0) {
|
||||||
printk(KERN_ERR "dt282x: AO underrun\n");
|
dev_err(dev->class_dev, "AO underrun\n");
|
||||||
dt282x_ao_cancel(dev, s);
|
dt282x_ao_cancel(dev, s);
|
||||||
s->async->events |= COMEDI_CB_OVERFLOW;
|
s->async->events |= COMEDI_CB_OVERFLOW;
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user