From 10df0ae5f73acdc3b1cd37ff66e588b14a2d30ce Mon Sep 17 00:00:00 2001 From: Ajayswar S Date: Wed, 25 Jun 2025 11:25:46 +0530 Subject: [PATCH] fix(iovirt): Align IOVIRT_BLOCK size by unifying MAX_NAMED_COMP_LENGTH -Resolved inconsistency in MAX_NAMED_COMP_LENGTH definition to prevent SMMU test failure due to mismatched IOVIRT_BLOCK size. Signed-off-by: Ajayswar S Change-Id: Ifee048311307a38ea8f1c39100bf23930c92967f --- pal/uefi_dt/include/pal_uefi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pal/uefi_dt/include/pal_uefi.h b/pal/uefi_dt/include/pal_uefi.h index a22c1356..b64ff47f 100644 --- a/pal/uefi_dt/include/pal_uefi.h +++ b/pal/uefi_dt/include/pal_uefi.h @@ -321,7 +321,7 @@ typedef union { ID_MAP map; }NODE_DATA_MAP; -#define MAX_NAMED_COMP_LENGTH 256 +#define MAX_NAMED_COMP_LENGTH 150 typedef struct { UINT64 smmu_base; /* SMMU base to which component is attached, else NULL */