Revision: 17021
          http://sourceforge.net/p/edk2/code/17021
Author:   vanjeff
Date:     2015-03-09 06:37:32 +0000 (Mon, 09 Mar 2015)
Log Message:
-----------
UefiCpuPkg/MpService: fix trivial typo in cpu state

CpuStateBuzy => CpuStateBusy

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Chen Fan <[email protected]>
Reviewed-by: Jeff Fan <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>

Modified Paths:
--------------
    trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.c
    trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.h

Modified: trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.c
===================================================================
--- trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.c        2015-03-09 03:30:34 UTC (rev 
17020)
+++ trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.c        2015-03-09 06:37:32 UTC (rev 
17021)
@@ -1407,7 +1407,7 @@
   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;

Modified: trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.h
===================================================================
--- trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.h        2015-03-09 03:30:34 UTC (rev 
17020)
+++ trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.h        2015-03-09 06:37:32 UTC (rev 
17021)
@@ -79,7 +79,7 @@
   CpuStateIdle,
   CpuStateBlocked,
   CpuStateReady,
-  CpuStateBuzy,
+  CpuStateBusy,
   CpuStateFinished
 } CPU_STATE;
 


------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to