mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg MpInitLib: Fix typo "sCPUID" to "CPUID"
Cc: Eric Dong <eric.dong@intel.com> Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Eric Dong <eric.dong@intel.com>
This commit is contained in:
parent
d3180516f3
commit
3e5c6c07b1
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Implementation of loading microcode on processors.
|
Implementation of loading microcode on processors.
|
||||||
|
|
||||||
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -77,7 +77,7 @@ MicrocodeDetect (
|
||||||
ExtendedTableLength = 0;
|
ExtendedTableLength = 0;
|
||||||
//
|
//
|
||||||
// Here data of CPUID leafs have not been collected into context buffer, so
|
// Here data of CPUID leafs have not been collected into context buffer, so
|
||||||
// GetProcessorCpuid() cannot be used here to retrieve sCPUID data.
|
// GetProcessorCpuid() cannot be used here to retrieve CPUID data.
|
||||||
//
|
//
|
||||||
AsmCpuid (CPUID_VERSION_INFO, &Eax.Uint32, NULL, NULL, NULL);
|
AsmCpuid (CPUID_VERSION_INFO, &Eax.Uint32, NULL, NULL, NULL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue