diff options
author | Rebecca Cran <rebecca@nuviainc.com> | 2020-12-04 13:11:26 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-12-10 02:24:10 +0000 |
commit | bd9da7b1da2639fcea8a156fa92a32bbc4209367 (patch) | |
tree | 712ea3d0053c4e2df1930767a833b9c2eb0fc4ed /ShellPkg/Library | |
parent | e157c8f9ed173a390d2c9d29069a46e9662e0d04 (diff) | |
download | edk2-bd9da7b1da2639fcea8a156fa92a32bbc4209367.tar.gz edk2-bd9da7b1da2639fcea8a156fa92a32bbc4209367.tar.bz2 edk2-bd9da7b1da2639fcea8a156fa92a32bbc4209367.zip |
MdePkg,ShellPkg: Fix typo in SMBIOS_TABLE_TYPE4 field ProcessorManufacturer
In SmBios.h, the SMBIOS_TABLE_TYPE4 field "ProcessorManufacture"
should be "ProcessorManufacturer".
Also, update SmbiosView PrintInfo.c to use the new field name.
Signed-off-by: Rebecca Cran <rebecca@nuviainc.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'ShellPkg/Library')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c index 478811f0fd..3d12b25bf9 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c @@ -427,7 +427,7 @@ SmbiosPrintStructure ( } else {
DisplayProcessorFamily (Struct->Type4->ProcessorFamily, Option);
}
- PRINT_PENDING_STRING (Struct, Type4, ProcessorManufacture);
+ PRINT_PENDING_STRING (Struct, Type4, ProcessorManufacturer);
PRINT_BIT_FIELD (Struct, Type4, ProcessorId, 8);
PRINT_PENDING_STRING (Struct, Type4, ProcessorVersion);
DisplayProcessorVoltage (*(UINT8 *) &(Struct->Type4->Voltage), Option);
|