drivers: staging: ft1000: Use pr_info instead of printk

Improve coding style by fixing this checkstyle warning:

WARNING: Prefer [subsystem eg: netdev]_info([subsystem]dev, ... then dev_info(dev, ... then pr_info(...  to printk(KERN_INFO ...

Signed-off-by: Artem Fetishev <wwctrsrx@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Artem Fetishev
2014-05-11 21:14:28 +03:00
committed by Greg Kroah-Hartman
parent b4da658ea9
commit 5df466cd66

View File

@@ -24,7 +24,7 @@ struct app_info_block {
struct list_head app_sqlist; /* link list of msgs for applicaton on slow queue */
} __packed;
#define DEBUG(args...) printk(KERN_INFO args)
#define DEBUG(args...) pr_info(args)
#define FALSE 0
#define TRUE 1