mirror of https://github.com/acidanthera/audk.git
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>
This commit is contained in:
parent
e157c8f9ed
commit
bd9da7b1da
|
@ -894,7 +894,7 @@ typedef struct {
|
|||
SMBIOS_TABLE_STRING Socket;
|
||||
UINT8 ProcessorType; ///< The enumeration value from PROCESSOR_TYPE_DATA.
|
||||
UINT8 ProcessorFamily; ///< The enumeration value from PROCESSOR_FAMILY_DATA.
|
||||
SMBIOS_TABLE_STRING ProcessorManufacture;
|
||||
SMBIOS_TABLE_STRING ProcessorManufacturer;
|
||||
PROCESSOR_ID_DATA ProcessorId;
|
||||
SMBIOS_TABLE_STRING ProcessorVersion;
|
||||
PROCESSOR_VOLTAGE Voltage;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue