aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/device_cfg.h
diff options
context:
space:
mode:
authorGuillaume Clement <gclement@baobob.org>2014-07-25 01:06:21 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-27 11:21:28 -0700
commit941ead9adf195395d75eabb0cec15311bf5c5959 (patch)
tree0fb6f30912ae210a35b09f16f609e2fca1831929 /drivers/staging/vt6655/device_cfg.h
parentstaging: vt6655: fix static position in inline function (diff)
downloadlinux-dev-941ead9adf195395d75eabb0cec15311bf5c5959.tar.xz
linux-dev-941ead9adf195395d75eabb0cec15311bf5c5959.zip
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; \
} \