summaryrefslogtreecommitdiff
path: root/cmd/acpi.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-09-21 11:01:07 -0400
committerTom Rini <trini@konsulko.com>2020-09-21 11:01:07 -0400
commit10431c4eaaf9fb387ba3243b37b7405b65d2e676 (patch)
treebd7cfe7a8248bee4d51e8bfcd7da968816c8efb6 /cmd/acpi.c
parent400f84c5baaec9b8a9f30e4ea77785e6f9e00c4b (diff)
parent40edea3a07ebb89e86c9bde8c94000c8f6613be7 (diff)
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-x86
- Several ACPI bug fixes - Intel edison: Move config SYS_MALLOC_LEN to Kconfig - Use "emmc" in ApolloLake FSP devicetree bindings
Diffstat (limited to 'cmd/acpi.c')
-rw-r--r--cmd/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/acpi.c b/cmd/acpi.c
index 085a3a650d1..a3419b42b55 100644
--- a/cmd/acpi.c
+++ b/cmd/acpi.c
@@ -26,7 +26,7 @@ static void dump_hdr(struct acpi_table_header *hdr)
printf("%.*s %08lx %06x", ACPI_NAME_LEN, hdr->signature,
(ulong)map_to_sysmem(hdr), hdr->length);
if (has_hdr) {
- printf(" (v%02d %.6s %.8s %u %.4s %d)\n", hdr->revision,
+ printf(" (v%02d %.6s %.8s %x %.4s %x)\n", hdr->revision,
hdr->oem_id, hdr->oem_table_id, hdr->oem_revision,
hdr->aslc_id, hdr->aslc_revision);
} else {