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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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