fujitsu-laptop: Use module name in debug messages
authorMichał Kępień <[email protected]>
Thu, 23 Jun 2016 10:02:47 +0000 (12:02 +0200)
committerDarren Hart <[email protected]>
Wed, 29 Jun 2016 05:18:33 +0000 (22:18 -0700)
vdbg_printk() always prefixes the log messages it generates with
"FUJ02B1", which can be misleading, because it might have been called
while handling a notify for ACPI device FUJ02E3 or during module
initialization etc.  Employ pr_fmt() to prefix debug messages with the
module name instead and thus avoid confusion.

Reported-by: Jan-Marek Glogowski <[email protected]>
Signed-off-by: Michał Kępień <[email protected]>
Acked-by: Jonathan Woithe <[email protected]>
Signed-off-by: Darren Hart <[email protected]>
drivers/platform/x86/fujitsu-laptop.c

index ce41bc34288df5fa159c35b58237df5b2b500819..04e633d55af7a0f0c53e076994f6102198098eb8 100644 (file)
 #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
 #define vdbg_printk(a_dbg_level, format, arg...) \
        do { if (dbg_level & a_dbg_level) \
-               printk(FUJLAPTOP_DEBUG "%s: " format, __func__ , ## arg); \
+               printk(KERN_DEBUG pr_fmt("%s: " format), __func__, ## arg); \
        } while (0)
 #else
 #define vdbg_printk(a_dbg_level, format, arg...) \