Skip to content

Commit

Permalink
ACPICA: Debugger: Extend some max line lengths
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bob Moore authored and Rafael J. Wysocki committed Aug 13, 2016
1 parent b5c0875 commit 60d836f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions drivers/acpi/acpica/dbobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -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("\"");
Expand Down
2 changes: 1 addition & 1 deletion drivers/acpi/acpica/nsdump.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 60d836f

Please sign in to comment.