Re: [PATCH 2/2] Input: evbug - Use 'pr_debug()' instead of hand-writing it

2021-04-15 Thread Joe Perches
On Thu, 2021-04-15 at 22:58 +0200, Christophe JAILLET wrote: > 'printk(KERN_DEBUG pr_fmt(...))' can be replaced by a much less verbose > 'pr_debug()'. This is not really true because printk(KERN_DEBUG ...); will _always_ be emitted if the console level allows pr_debug(...); will

[PATCH 2/2] Input: evbug - Use 'pr_debug()' instead of hand-writing it

2021-04-15 Thread Christophe JAILLET
'printk(KERN_DEBUG pr_fmt(...))' can be replaced by a much less verbose 'pr_debug()'. Signed-off-by: Christophe JAILLET --- drivers/input/evbug.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/input/evbug.c b/drivers/input/evbug.c index