mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[NTOS:KE]
- Fix a typo in KiGetCacheInformation. Spotted by Mike. svn path=/trunk/; revision=68287
This commit is contained in:
parent
fc363d1f59
commit
c8c9e7d157
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue