Skip to content

Commit e4140a5

Browse files
praveensankarnmergify[bot]
authored andcommitted
ShellPkg: Added ArmV9 processors support for SmbiosView command
Added switch case for ArmV9 processor family inside function DisplayProcessorFamily2 in PrintInfo.c to avoid inappropriate data shown while accessing Type 4 Smbios table. ArmV9 processor family is added in Smbios Spec 3.8 which should be noted. Signed-off-by: Praveen Sankar N <[email protected]>
1 parent d0b64b2 commit e4140a5

File tree

1 file changed

+4
-0
lines changed
  • ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView

1 file changed

+4
-0
lines changed

ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2612,6 +2612,10 @@ DisplayProcessorFamily2 (
26122612
Print (L"ARMv8\n");
26132613
break;
26142614

2615+
case 0x102:
2616+
Print (L"ARMv9\n");
2617+
break;
2618+
26152619
case 0x104:
26162620
Print (L"SH-3\n");
26172621
break;

0 commit comments

Comments
 (0)