From b302a9784cc0926d1870cabf95f272cf2f4ce345 Mon Sep 17 00:00:00 2001 From: Chen Fan Date: Mon, 9 Mar 2015 06:37:32 +0000 Subject: [PATCH] UefiCpuPkg/MpService: fix trivial typo in cpu state CpuStateBuzy => CpuStateBusy Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Chen Fan Reviewed-by: Jeff Fan Reviewed-by: Jordan Justen git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17021 6f19259b-4bc3-4df7-8a09-765794883524 --- UefiCpuPkg/CpuDxe/CpuMp.c | 2 +- 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; -- 2.39.2