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 <hswee...@visionengravers.com>
Cc: Ian Abbott <abbo...@mev.co.uk>
Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
---
 drivers/staging/comedi/drivers/amplc_pci224.c | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/comedi/drivers/amplc_pci224.c 
b/drivers/staging/comedi/drivers/amplc_pci224.c
index 810e397..dcccdce 100644
--- a/drivers/staging/comedi/drivers/amplc_pci224.c
+++ b/drivers/staging/comedi/drivers/amplc_pci224.c
@@ -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++;
                }
-- 
1.8.4.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to