staging: comedi: amplc_pci224: remove use of DPRINTK

Use dev_dbg() instead of the DPRINTK macro to output the comedi
debugging information.

The dev_dbg() will prefix the messages appropriately so remove the
"comedi%d: " DRIVER_NAME portion and use __func__ to show the actual
function name for debugging.

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:
H Hartley Sweeten 2013-11-22 10:46:42 -07:00 committed by Greg Kroah-Hartman
parent c001798aa1
commit 0a783410a1

View File

@ -909,16 +909,14 @@ pci224_ao_cmdtest(struct comedi_device *dev, struct comedi_subdevice *s,
}
if (errors) {
if (errors & dupchan_err) {
DPRINTK("comedi%d: " DRIVER_NAME
": ao_cmdtest: "
"entries in chanlist must contain no "
"duplicate channels\n", dev->minor);
dev_dbg(dev->class_dev,
"%s: entries in chanlist must contain no duplicate channels\n",
__func__);
}
if (errors & range_err) {
DPRINTK("comedi%d: " DRIVER_NAME
": ao_cmdtest: "
"entries in chanlist must all have "
"the same range index\n", dev->minor);
dev_dbg(dev->class_dev,
"%s: entries in chanlist must all have the same range index\n",
__func__);
}
err++;
}