mirror of https://github.com/acidanthera/audk.git
ShellPkg SmbiosView: Display Type 0 BIOS segment in hexadecimal
The SMBIOS Type 0 BIOS segment field is currently displayed in decimal. Since this field is likely to have a value like 0xE800 or 0xF000, using hexadecimal seems like a better choice. Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Jaben Carsey <jaben.carsey@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Westfahl <jeff.westfahl@ni.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
parent
dd29d8b356
commit
fed709deb4
|
@ -316,7 +316,7 @@ SmbiosPrintStructure (
|
||||||
case 0:
|
case 0:
|
||||||
PRINT_PENDING_STRING (Struct, Type0, Vendor);
|
PRINT_PENDING_STRING (Struct, Type0, Vendor);
|
||||||
PRINT_PENDING_STRING (Struct, Type0, BiosVersion);
|
PRINT_PENDING_STRING (Struct, Type0, BiosVersion);
|
||||||
PRINT_STRUCT_VALUE (Struct, Type0, BiosSegment);
|
PRINT_STRUCT_VALUE_H (Struct, Type0, BiosSegment);
|
||||||
PRINT_PENDING_STRING (Struct, Type0, BiosReleaseDate);
|
PRINT_PENDING_STRING (Struct, Type0, BiosReleaseDate);
|
||||||
ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_BIOS_SIZE), gShellDebug1HiiHandle, 64 * (Struct->Type0->BiosSize + 1));
|
ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_BIOS_SIZE), gShellDebug1HiiHandle, 64 * (Struct->Type0->BiosSize + 1));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue