diff options
author | Chen Fan <chen.fan.fnst@cn.fujitsu.com> | 2015-03-09 06:37:32 +0000 |
---|---|---|
committer | vanjeff <vanjeff@Edk2> | 2015-03-09 06:37:32 +0000 |
commit | b302a9784cc0926d1870cabf95f272cf2f4ce345 (patch) | |
tree | f6c45f4906b8c0cf167be36dfcc92ccf5b1d5ee6 /UefiCpuPkg/CpuDxe | |
parent | 69a99d0b2c0d601c60a1d65bac057adb045d002b (diff) | |
download | edk2-platforms-b302a9784cc0926d1870cabf95f272cf2f4ce345.tar.xz |
UefiCpuPkg/MpService: fix trivial typo in cpu state
CpuStateBuzy => CpuStateBusy
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17021 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UefiCpuPkg/CpuDxe')
-rw-r--r-- | UefiCpuPkg/CpuDxe/CpuMp.c | 2 | ||||
-rw-r--r-- | UefiCpuPkg/CpuDxe/CpuMp.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/UefiCpuPkg/CpuDxe/CpuMp.c b/UefiCpuPkg/CpuDxe/CpuMp.c index 71b62bef4c..25b6fcb056 100644 --- a/UefiCpuPkg/CpuDxe/CpuMp.c +++ b/UefiCpuPkg/CpuDxe/CpuMp.c @@ -1407,7 +1407,7 @@ FillInProcessorInformation ( CpuData->Info.Location.Package = ProcessorId;
CpuData->Info.Location.Core = 0;
CpuData->Info.Location.Thread = 0;
- CpuData->State = Bsp ? CpuStateBuzy : CpuStateIdle;
+ CpuData->State = Bsp ? CpuStateBusy : CpuStateIdle;
CpuData->Procedure = NULL;
CpuData->Parameter = NULL;
diff --git a/UefiCpuPkg/CpuDxe/CpuMp.h b/UefiCpuPkg/CpuDxe/CpuMp.h index 5c892381ef..a6478c087c 100644 --- a/UefiCpuPkg/CpuDxe/CpuMp.h +++ b/UefiCpuPkg/CpuDxe/CpuMp.h @@ -79,7 +79,7 @@ typedef enum { CpuStateIdle,
CpuStateBlocked,
CpuStateReady,
- CpuStateBuzy,
+ CpuStateBusy,
CpuStateFinished
} CPU_STATE;
|