mirror of https://github.com/acidanthera/audk.git
MdePkg,ShellPkg: Fix typo in SMBIOS_TABLE_TYPE17 field FirmwareVersion
"FirmwareVersion" was misspelled "FirwareVersion". 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
bd9da7b1da
commit
0db89a661f
|
@ -1837,7 +1837,7 @@ typedef struct {
|
||||||
//
|
//
|
||||||
UINT8 MemoryTechnology; ///< The enumeration value from MEMORY_DEVICE_TECHNOLOGY
|
UINT8 MemoryTechnology; ///< The enumeration value from MEMORY_DEVICE_TECHNOLOGY
|
||||||
MEMORY_DEVICE_OPERATING_MODE_CAPABILITY MemoryOperatingModeCapability;
|
MEMORY_DEVICE_OPERATING_MODE_CAPABILITY MemoryOperatingModeCapability;
|
||||||
SMBIOS_TABLE_STRING FirwareVersion;
|
SMBIOS_TABLE_STRING FirmwareVersion;
|
||||||
UINT16 ModuleManufacturerID;
|
UINT16 ModuleManufacturerID;
|
||||||
UINT16 ModuleProductID;
|
UINT16 ModuleProductID;
|
||||||
UINT16 MemorySubsystemControllerManufacturerID;
|
UINT16 MemorySubsystemControllerManufacturerID;
|
||||||
|
|
|
@ -776,7 +776,7 @@ SmbiosPrintStructure (
|
||||||
if (Struct->Hdr->Length > 0x28) {
|
if (Struct->Hdr->Length > 0x28) {
|
||||||
DisplayMemoryDeviceMemoryTechnology (Struct->Type17->MemoryTechnology, Option);
|
DisplayMemoryDeviceMemoryTechnology (Struct->Type17->MemoryTechnology, Option);
|
||||||
DisplayMemoryDeviceMemoryOperatingModeCapability (Struct->Type17->MemoryOperatingModeCapability.Uint16, Option);
|
DisplayMemoryDeviceMemoryOperatingModeCapability (Struct->Type17->MemoryOperatingModeCapability.Uint16, Option);
|
||||||
PRINT_PENDING_STRING (Struct, Type17, FirwareVersion);
|
PRINT_PENDING_STRING (Struct, Type17, FirmwareVersion);
|
||||||
PRINT_STRUCT_VALUE_H (Struct, Type17, ModuleManufacturerID);
|
PRINT_STRUCT_VALUE_H (Struct, Type17, ModuleManufacturerID);
|
||||||
PRINT_STRUCT_VALUE_H (Struct, Type17, ModuleProductID);
|
PRINT_STRUCT_VALUE_H (Struct, Type17, ModuleProductID);
|
||||||
PRINT_STRUCT_VALUE_H (Struct, Type17, MemorySubsystemControllerManufacturerID);
|
PRINT_STRUCT_VALUE_H (Struct, Type17, MemorySubsystemControllerManufacturerID);
|
||||||
|
|
Loading…
Reference in New Issue