Commit 6be2d72b authored by Bob Moore's avatar Bob Moore Committed by Rafael J. Wysocki

ACPICA: Update for a few debug output statements

ACPICA commit 900e96a9c6c6d67c2e18e8c2576dc4742221fc71

Implement a very small indent for trace output.

Link: https://github.com/acpica/acpica/commit/900e96a9Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarErik Schmauss <erik.schmauss@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 56d03d7b
...@@ -904,7 +904,7 @@ void ...@@ -904,7 +904,7 @@ void
acpi_ex_dump_operands(union acpi_operand_object **operands, acpi_ex_dump_operands(union acpi_operand_object **operands,
const char *opcode_name, u32 num_operands) const char *opcode_name, u32 num_operands)
{ {
ACPI_FUNCTION_NAME(ex_dump_operands); ACPI_FUNCTION_TRACE(ex_dump_operands);
if (!opcode_name) { if (!opcode_name) {
opcode_name = "UNKNOWN"; opcode_name = "UNKNOWN";
...@@ -928,7 +928,7 @@ acpi_ex_dump_operands(union acpi_operand_object **operands, ...@@ -928,7 +928,7 @@ acpi_ex_dump_operands(union acpi_operand_object **operands,
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
"**** End operand dump for [%s]\n", opcode_name)); "**** End operand dump for [%s]\n", opcode_name));
return; return_VOID;
} }
/******************************************************************************* /*******************************************************************************
......
...@@ -163,6 +163,7 @@ acpi_debug_print(u32 requested_debug_level, ...@@ -163,6 +163,7 @@ acpi_debug_print(u32 requested_debug_level,
{ {
acpi_thread_id thread_id; acpi_thread_id thread_id;
va_list args; va_list args;
int fill_count;
/* Check if debug output enabled */ /* Check if debug output enabled */
...@@ -202,10 +203,21 @@ acpi_debug_print(u32 requested_debug_level, ...@@ -202,10 +203,21 @@ acpi_debug_print(u32 requested_debug_level,
acpi_os_printf("[%u] ", (u32)thread_id); acpi_os_printf("[%u] ", (u32)thread_id);
} }
acpi_os_printf("[%02ld] ", acpi_gbl_nesting_level); fill_count = 48 - acpi_gbl_nesting_level -
#endif strlen(acpi_ut_trim_function_name(function_name));
if (fill_count < 0) {
fill_count = 0;
}
acpi_os_printf("[%02ld] %*s",
acpi_gbl_nesting_level, acpi_gbl_nesting_level, " ");
acpi_os_printf("%s%*s: ",
acpi_ut_trim_function_name(function_name), fill_count,
" ");
#else
acpi_os_printf("%-22.22s: ", acpi_ut_trim_function_name(function_name)); acpi_os_printf("%-22.22s: ", acpi_ut_trim_function_name(function_name));
#endif
va_start(args, format); va_start(args, format);
acpi_os_vprintf(format, args); acpi_os_vprintf(format, args);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment