[NTOS:KE]

- Fix a typo in KiGetCacheInformation. Spotted by Mike.

svn path=/trunk/; revision=68287
This commit is contained in:
Thomas Faber 2015-06-27 10:58:32 +00:00
parent fc363d1f59
commit c8c9e7d157

View file

@ -679,7 +679,7 @@ KiGetCacheInformation(VOID)
/* Check if we support CPUID 0x80000005 */
KiCpuId(&CpuInfo, 0x80000000);
if (CpuInfo.Eax >= 0x80000006)
if (CpuInfo.Eax >= 0x80000005)
{
/* Get L1 size first */
KiCpuId(&CpuInfo, 0x80000005);