git: 1449d298daaa - stable/14 - acpidump IVRS table format: change 'IOMMUId' into 'IOMMU DeviceId'

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Thu, 23 May 2024 00:27:13 UTC
The branch stable/14 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=1449d298daaa955153df7e0b67d9b38b17cae4dd

commit 1449d298daaa955153df7e0b67d9b38b17cae4dd
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-05-19 23:01:43 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-05-23 00:26:44 +0000

    acpidump IVRS table format: change 'IOMMUId' into 'IOMMU DeviceId'
    
    (cherry picked from commit 6cba29c09a966be33b0958f912a7c03d92b926b8)
---
 usr.sbin/acpi/acpidump/acpi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/acpi/acpidump/acpi.c b/usr.sbin/acpi/acpidump/acpi.c
index adef488065f6..6f8effe58fbd 100644
--- a/usr.sbin/acpi/acpidump/acpi.c
+++ b/usr.sbin/acpi/acpidump/acpi.c
@@ -1504,7 +1504,7 @@ acpi_handle_dmar(ACPI_TABLE_HEADER *sdp)
 static void
 acpi_handle_ivrs_ivhd_header(ACPI_IVRS_HEADER *addr)
 {
-	printf("\n\tIVHD Type=%#x IOMMUId=%x\n\tFlags=",
+	printf("\n\tIVHD Type=%#x IOMMU DeviceId=%#06x\n\tFlags=",
 	    addr->Type, addr->DeviceId);
 #define PRINTFLAG(flag, name) printflag(addr->Flags, flag, #name)
 	PRINTFLAG(ACPI_IVHD_TT_ENABLE, HtTunEn);