diff options
Diffstat (limited to 'UefiCpuPkg')
-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;
|