Skip to content

Commit

Permalink
ACPICA: Simplify output for the ACPI Debug Object
Browse files Browse the repository at this point in the history
ACPICA commit ea08cda9859d9f758f4832400b2d559847c2d52a

Cleanup the output, change [Acpi Debug] to Acpi Debug:

Link: acpica/acpica@ea08cda9
Signed-off-by: Bob Moore <[email protected]>
Signed-off-by: Lv Zheng <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
  • Loading branch information
acpibob authored and rafaeljw committed Jun 27, 2017
1 parent fdf8707 commit 9c0b6c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/acpi/acpica/exdebug.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ acpi_ex_do_debug_object(union acpi_operand_object *source_desc,
timer = ((u32)acpi_os_get_timer() / 10);
timer &= 0x03FFFFFF;

acpi_os_printf("[ACPI Debug T=0x%8.8X] %*s", timer,
acpi_os_printf("ACPI Debug: T=0x%8.8X %*s", timer,
level, " ");
} else {
acpi_os_printf("[ACPI Debug] %*s", level, " ");
acpi_os_printf("ACPI Debug: %*s", level, " ");
}
}

Expand Down

0 comments on commit 9c0b6c4

Please sign in to comment.