MdePkg: Remove non-ASCII characters from header file

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4775

Signed-off-by: Neo Hsueh <Hong-Chih.Hsueh@amd.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Jiangang He <jiangang.he@amd.com>
This commit is contained in:
Neo Hsueh 2024-05-01 14:13:39 -05:00 committed by mergify[bot]
parent e2e09d8512
commit 10cd8b45ce
2 changed files with 6 additions and 6 deletions

View File

@ -46,9 +46,9 @@ CPUID Signature Information
CPUID Extended Topology Enumeration CPUID Extended Topology Enumeration
@note @note
Reference: AMD64 Architecture Programmers Manual Volume 3: General-Purpose and System Instructions, Reference: AMD64 Architecture Programmer's Manual Volume 3: General-Purpose and System Instructions,
Revision 3.35 Appendix E, Revision 3.35 Appendix E,
E.4.24 Function 8000_0026Extended CPU Topology: E.4.24 Function 8000_0026-Extended CPU Topology:
CPUID Fn8000_0026 reports extended topology information for logical processors, including CPUID Fn8000_0026 reports extended topology information for logical processors, including
asymmetric and heterogenous topology descriptions. Individual logical processors may report asymmetric and heterogenous topology descriptions. Individual logical processors may report
different values in systems with asynchronous and heterogeneous topologies. different values in systems with asynchronous and heterogeneous topologies.

View File

@ -5733,9 +5733,9 @@ typedef union {
/// [Bit 7:4] TME Policy/Encryption Algorithm: Only algorithms enumerated in /// [Bit 7:4] TME Policy/Encryption Algorithm: Only algorithms enumerated in
/// IA32_TME_CAPABILITY are allowed. /// IA32_TME_CAPABILITY are allowed.
/// For example: /// For example:
/// 0000 AES-XTS-128. /// 0000 - AES-XTS-128.
/// 0001 AES-XTS-128 with integrity. /// 0001 - AES-XTS-128 with integrity.
/// 0010 AES-XTS-256. /// 0010 - AES-XTS-256.
/// Other values are invalid. /// Other values are invalid.
/// ///
UINT32 TmePolicy : 4; UINT32 TmePolicy : 4;
@ -5756,7 +5756,7 @@ typedef union {
/// Similar to enumeration, this is an encoded value. /// Similar to enumeration, this is an encoded value.
/// Writing a value greater than MK_TME_MAX_KEYID_BITS will result in #GP. /// Writing a value greater than MK_TME_MAX_KEYID_BITS will result in #GP.
/// Writing a non-zero value to this field will #GP if bit 1 of EAX (Hardware /// Writing a non-zero value to this field will #GP if bit 1 of EAX (Hardware
/// Encryption Enable) is not also set to 1, as encryption hardware must be /// Encryption Enable) is not also set to 1, as encryption hardware must be
/// enabled to use MKTME. /// enabled to use MKTME.
/// Example: To support 255 keys, this field would be set to a value of 8. /// Example: To support 255 keys, this field would be set to a value of 8.
/// ///