summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6655/device_cfg.h
diff options
context:
space:
mode:
authorGuillaume Clement <gclement@baobob.org>2014-07-25 03:06:21 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-27 22:21:28 +0400
commit941ead9adf195395d75eabb0cec15311bf5c5959 (patch)
tree0fb6f30912ae210a35b09f16f609e2fca1831929 /drivers/staging/vt6655/device_cfg.h
parent5f742c7b98f38fbda19b4e8cc114e6878c7c3fbb (diff)
downloadlinux-941ead9adf195395d75eabb0cec15311bf5c5959.tar.xz
staging: vt6655: Use pr_* functions instead of printk
Lots of printk are used in vt6655, replace them with the pr_* equivalent. Signed-off-by: Guillaume Clement <gclement@baobob.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/device_cfg.h')
-rw-r--r--drivers/staging/vt6655/device_cfg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6655/device_cfg.h b/drivers/staging/vt6655/device_cfg.h
index 1137adede9ee..af2892496d0c 100644
--- a/drivers/staging/vt6655/device_cfg.h
+++ b/drivers/staging/vt6655/device_cfg.h
@@ -81,7 +81,7 @@ typedef enum _chip_type {
#define ASSERT(x) \
do { \
if (!(x)) { \
- printk(KERN_ERR "assertion %s failed: file %s line %d\n", \
+ pr_err("assertion %s failed: file %s line %d\n", \
#x, __func__, __LINE__); \
*(int *)0 = 0; \
} \