Commit 5df466cd authored by Artem Fetishev's avatar Artem Fetishev Committed by Greg Kroah-Hartman

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: default avatarArtem Fetishev <wwctrsrx@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b4da658e
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment