summaryrefslogtreecommitdiff
path: root/drivers/staging/comedi/comedidev.h
diff options
context:
space:
mode:
authorIan Abbott <abbotti@mev.co.uk>2012-08-16 13:38:05 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-08-16 18:35:45 (GMT)
commit4f870fe6269bbc7cca2a70c50a4cc6f811fe21c5 (patch)
tree33f47291189020230a4265350a9b045ce3cce40f /drivers/staging/comedi/comedidev.h
parent00255d194321a4800de6bd87fc5b30972d5ecbb3 (diff)
downloadlinux-fsl-qoriq-4f870fe6269bbc7cca2a70c50a4cc6f811fe21c5.tar.xz
staging: comedi: replace printk calls in comedi core
Replace the printk() calls in the comedi core module with something more suitable, such as dev_...() or pr_...(). Remove the ones that report a failure to increment a module count (try_module_get() failure). Change the printk() call in the DPRINTK() macro to pr_debug(). TODO: Most of the DPRINTK() calls need to be replaced with something else. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/comedi/comedidev.h')
-rw-r--r--drivers/staging/comedi/comedidev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/comedi/comedidev.h b/drivers/staging/comedi/comedidev.h
index f713783..cb67a5c 100644
--- a/drivers/staging/comedi/comedidev.h
+++ b/drivers/staging/comedi/comedidev.h
@@ -46,7 +46,7 @@
#define DPRINTK(format, args...) do { \
if (comedi_debug) \
- printk(KERN_DEBUG "comedi: " format , ## args); \
+ pr_debug("comedi: " format, ## args); \
} while (0)
#define COMEDI_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))