Browse Source

ACPI: fix whitespace in pr_fmt() to align log entries

See this dmesg extract before the patch:

[    0.679466] ACPI: Dynamic OEM Table Load:
[    0.679470] ACPI: SSDT 0xFFFF910F6B497E00 00018A (v02 PmRef  ApCst    00003000 INTL 20160422)
[    0.679579] ACPI: Executed 1 blocks of module-level executable AML code
[    0.681477] ACPI : EC: EC started
[    0.681478] ACPI : EC: interrupt blocked
[    0.684798] ACPI: Interpreter enabled
[    0.684835] ACPI: (supports S0 S3 S4 S5)

Signed-off-by: Vincent Legoll <vincent.legoll@gmail.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Vincent Legoll 8 years ago
parent
commit
b6aeab44ed
4 changed files with 4 additions and 4 deletions
  1. 1 1
      drivers/acpi/acpi_dbg.c
  2. 1 1
      drivers/acpi/button.c
  3. 1 1
      drivers/acpi/ec.c
  4. 1 1
      drivers/acpi/ioapic.c

+ 1 - 1
drivers/acpi/acpi_dbg.c

@@ -10,7 +10,7 @@
  */
  */
 
 
 /* #define DEBUG */
 /* #define DEBUG */
-#define pr_fmt(fmt) "ACPI : AML: " fmt
+#define pr_fmt(fmt) "ACPI: AML: " fmt
 
 
 #include <linux/kernel.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/module.h>

+ 1 - 1
drivers/acpi/button.c

@@ -19,7 +19,7 @@
  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  */
  */
 
 
-#define pr_fmt(fmt) "ACPI : button: " fmt
+#define pr_fmt(fmt) "ACPI: button: " fmt
 
 
 #include <linux/kernel.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/module.h>

+ 1 - 1
drivers/acpi/ec.c

@@ -27,7 +27,7 @@
 
 
 /* Uncomment next line to get verbose printout */
 /* Uncomment next line to get verbose printout */
 /* #define DEBUG */
 /* #define DEBUG */
-#define pr_fmt(fmt) "ACPI : EC: " fmt
+#define pr_fmt(fmt) "ACPI: EC: " fmt
 
 
 #include <linux/kernel.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/module.h>

+ 1 - 1
drivers/acpi/ioapic.c

@@ -21,7 +21,7 @@
  * registered when we parsed the ACPI MADT.
  * registered when we parsed the ACPI MADT.
  */
  */
 
 
-#define pr_fmt(fmt) "ACPI : IOAPIC: " fmt
+#define pr_fmt(fmt) "ACPI: IOAPIC: " fmt
 
 
 #include <linux/slab.h>
 #include <linux/slab.h>
 #include <linux/acpi.h>
 #include <linux/acpi.h>