ACPICA: Debugger: Extend some max line lengths
ACPICA commit 622063bae684490191c8e8b10bf18e86d0ab4ebf Fix a couple of arbitrarily small output line lengths. Link: https://github.com/acpica/acpica/commit/622063ba 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>
This commit is contained in:
parent
b5c0875a16
commit
60d836fcdf
|
@ -142,11 +142,11 @@ void acpi_db_decode_internal_object(union acpi_operand_object *obj_desc)
|
|||
|
||||
case ACPI_TYPE_STRING:
|
||||
|
||||
acpi_os_printf("(%u) \"%.24s",
|
||||
acpi_os_printf("(%u) \"%.60s",
|
||||
obj_desc->string.length,
|
||||
obj_desc->string.pointer);
|
||||
|
||||
if (obj_desc->string.length > 24) {
|
||||
if (obj_desc->string.length > 60) {
|
||||
acpi_os_printf("...");
|
||||
} else {
|
||||
acpi_os_printf("\"");
|
||||
|
|
|
@ -338,7 +338,7 @@ acpi_ns_dump_one_object(acpi_handle obj_handle,
|
|||
case ACPI_TYPE_STRING:
|
||||
|
||||
acpi_os_printf("Len %.2X ", obj_desc->string.length);
|
||||
acpi_ut_print_string(obj_desc->string.pointer, 32);
|
||||
acpi_ut_print_string(obj_desc->string.pointer, 80);
|
||||
acpi_os_printf("\n");
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue