Skip to content

Commit 57b758c

Browse files
acpibobrafaeljw
authored andcommitted
ACPICA: acpidump/acpixtract: Support for tables larger than 1MB
acpidump: Expand the table offset field to 32 bits. acpixtract: Add support to handle the expanded field. Backwards compatibility is maintained. Signed-off-by: Bob Moore <[email protected]> Signed-off-by: Erik Schmauss <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent ec5cd31 commit 57b758c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/acpi/acpica/utbuffer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void acpi_ut_dump_buffer(u8 *buffer, u32 count, u32 display, u32 base_offset)
5353

5454
/* Print current offset */
5555

56-
acpi_os_printf("%6.4X: ", (base_offset + i));
56+
acpi_os_printf("%8.4X: ", (base_offset + i));
5757

5858
/* Print 16 hex chars */
5959

@@ -219,7 +219,7 @@ acpi_ut_dump_buffer_to_file(ACPI_FILE file,
219219

220220
/* Print current offset */
221221

222-
fprintf(file, "%6.4X: ", (base_offset + i));
222+
fprintf(file, "%8.4X: ", (base_offset + i));
223223

224224
/* Print 16 hex chars */
225225

0 commit comments

Comments
 (0)