git: 281a6ff273d1 - main - acpi: Fix error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 01 Sep 2022 17:36:50 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=281a6ff273d191678b343d531cdb7e877d6663f9
commit 281a6ff273d191678b343d531cdb7e877d6663f9
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-09-01 17:34:36 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2022-09-01 17:35:45 +0000
acpi: Fix error message
Fix a formatting error from 195f794318a33
Fixes: 195f794318a33
Sponsored by: Netflix
---
sys/arm64/acpica/acpi_machdep.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/arm64/acpica/acpi_machdep.c b/sys/arm64/acpica/acpi_machdep.c
index c9de53852549..113c8c4b8848 100644
--- a/sys/arm64/acpica/acpi_machdep.c
+++ b/sys/arm64/acpica/acpi_machdep.c
@@ -194,7 +194,7 @@ acpi_find_table(const char *sig)
}
acpi_unmap_table(xsdt);
} else {
- printf("ACPI: Unsupported RSDP version %d and XSDT %#llx\n",
+ printf("ACPI: Unsupported RSDP version %d and XSDT %#lx\n",
rsdp->Revision, rsdp->XsdtPhysicalAddress);
}
pmap_unmapbios((vm_offset_t)rsdp, sizeof(ACPI_TABLE_RSDP));