mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
[SDK] Fix naming of a CPUID structure
This commit is contained in:
parent
3b800165b0
commit
1ea3af8959
2 changed files with 2 additions and 2 deletions
|
@ -255,7 +255,7 @@ KiGetFeatureBits(VOID)
|
||||||
if (signature.MaxLeaf >= CPUID_EXTENDED_STATE)
|
if (signature.MaxLeaf >= CPUID_EXTENDED_STATE)
|
||||||
{
|
{
|
||||||
/* Read CPUID_EXTENDED_STATE */
|
/* Read CPUID_EXTENDED_STATE */
|
||||||
CPUID_EXTENDED_STATE_SUB_LEAF_EAX_REGS ExtStateSub;
|
CPUID_EXTENDED_STATE_SUB_LEAF_REGS ExtStateSub;
|
||||||
__cpuidex(ExtStateSub.AsInt32,
|
__cpuidex(ExtStateSub.AsInt32,
|
||||||
CPUID_EXTENDED_STATE,
|
CPUID_EXTENDED_STATE,
|
||||||
CPUID_EXTENDED_STATE_SUB_LEAF);
|
CPUID_EXTENDED_STATE_SUB_LEAF);
|
||||||
|
|
|
@ -112,7 +112,7 @@ typedef union
|
||||||
CPUID_EXTENDED_STATE_SUB_LEAF_ECX Ecx;
|
CPUID_EXTENDED_STATE_SUB_LEAF_ECX Ecx;
|
||||||
UINT32 Edx; // Reports the supported bits of the upper 32 bits of the IA32_XSS MSR. IA32_XSS[n + 32] can be set to 1 only if EDX[n] is 1.
|
UINT32 Edx; // Reports the supported bits of the upper 32 bits of the IA32_XSS MSR. IA32_XSS[n + 32] can be set to 1 only if EDX[n] is 1.
|
||||||
};
|
};
|
||||||
} CPUID_EXTENDED_STATE_SUB_LEAF_EAX_REGS;
|
} CPUID_EXTENDED_STATE_SUB_LEAF_REGS;
|
||||||
|
|
||||||
// CPUID_EXTENDED_CPU_SIG (0x80000001)
|
// CPUID_EXTENDED_CPU_SIG (0x80000001)
|
||||||
typedef union
|
typedef union
|
||||||
|
|
Loading…
Reference in a new issue