diff options
author | Bob Moore <robert.moore@intel.com> | 2017-06-05 04:42:17 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2017-06-27 16:25:27 -0400 |
commit | 9c0b6c49e8ae8bcbceffb0a417e8c7c912718694 (patch) | |
tree | 176975988aa8a99a069b21ff224c4edf57bcd465 | |
parent | fdf8707bd56f0e29024f79fa42598b4c4e124f33 (diff) |
ACPICA: Simplify output for the ACPI Debug Object
ACPICA commit ea08cda9859d9f758f4832400b2d559847c2d52a
Cleanup the output, change [Acpi Debug] to Acpi Debug:
Link: https://github.com/acpica/acpica/commit/ea08cda9
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/acpica/exdebug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/exdebug.c b/drivers/acpi/acpica/exdebug.c index ec614f5a3bcb..a8191d2ca5e3 100644 --- a/drivers/acpi/acpica/exdebug.c +++ b/drivers/acpi/acpica/exdebug.c | |||
@@ -117,10 +117,10 @@ acpi_ex_do_debug_object(union acpi_operand_object *source_desc, | |||
117 | timer = ((u32)acpi_os_get_timer() / 10); | 117 | timer = ((u32)acpi_os_get_timer() / 10); |
118 | timer &= 0x03FFFFFF; | 118 | timer &= 0x03FFFFFF; |
119 | 119 | ||
120 | acpi_os_printf("[ACPI Debug T=0x%8.8X] %*s", timer, | 120 | acpi_os_printf("ACPI Debug: T=0x%8.8X %*s", timer, |
121 | level, " "); | 121 | level, " "); |
122 | } else { | 122 | } else { |
123 | acpi_os_printf("[ACPI Debug] %*s", level, " "); | 123 | acpi_os_printf("ACPI Debug: %*s", level, " "); |
124 | } | 124 | } |
125 | } | 125 | } |
126 | 126 | ||