mirror of https://gitee.com/openkylin/linux.git
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:
parent
b4da658ea9
commit
5df466cd66
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue