From 9e815d789bcd7362a4b409ed58b9df8f5ea6f35c Mon Sep 17 00:00:00 2001 From: Cassandra Lam Date: Sun, 5 Oct 2025 23:06:28 -0500 Subject: [PATCH] ShellPkg/SmbiosView: Display Type 44 "Referenced Handle" field Signed-off-by: Cassandra Lam --- .../UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c index 71cfbc3740..40b33f8996 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c @@ -1343,6 +1343,11 @@ SmbiosPrintStructure ( // Processor Additional Information (Type 44) // case 44: + ShellPrintHiiDefaultEx ( + STRING_TOKEN (STR_SMBIOSVIEW_SMBIOSVIEW_REFERENCEDHANDLE), + gShellDebug1HiiHandle, + Struct->Type44->RefHandle + ); DisplayProcessorArchitectureType (Struct->Type44->ProcessorSpecificBlock.ProcessorArchType, Option); break;