]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Core/Dxe/Dispatcher/Dependency.c
Code scrub for DxeCore
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / Dispatcher / Dependency.c
index a3c974b9d9b8959d2c78ffa6802a5cff4d2af17a..a77dc31073e52e5f4e8cd23a842d04027c2a4cd1 100644 (file)
@@ -1,5 +1,5 @@
 /** @file\r
-  DXE Dispatcher Dependency Evaluator\r
+  DXE Dispatcher Dependency Evaluator.\r
 \r
   This routine evaluates a dependency expression (DEPENDENCY_EXPRESSION) to determine\r
   if a driver can be scheduled for execution.  The criteria for\r
@@ -34,8 +34,7 @@ BOOLEAN *mDepexEvaluationStackPointer = NULL;
   Grow size of the Depex stack\r
 \r
   @retval EFI_SUCCESS           Stack successfully growed. \r
-  @retval EFI_OUT_OF_RESOURCES  There is not enough system memory to grow the \r
-                                stack.\r
+  @retval EFI_OUT_OF_RESOURCES  There is not enough system memory to grow the stack.\r
 \r
 **/\r
 EFI_STATUS\r
@@ -85,13 +84,12 @@ GrowDepexStack (
 \r
 \r
 /**\r
-  Push an element onto the Boolean Stack\r
+  Push an element onto the Boolean Stack.\r
 \r
   @param  Value                 BOOLEAN to push. \r
 \r
   @retval EFI_SUCCESS           The value was pushed onto the stack. \r
-  @retval EFI_OUT_OF_RESOURCES  There is not enough system memory to grow the \r
-                                stack.\r
+  @retval EFI_OUT_OF_RESOURCES  There is not enough system memory to grow the stack.\r
 \r
 **/\r
 EFI_STATUS\r
@@ -131,7 +129,7 @@ PushBool (
   @param  Value                 BOOLEAN to pop. \r
 \r
   @retval EFI_SUCCESS           The value was popped onto the stack. \r
-  @retval EFI_ACCESS_DENIED     The pop operation underflowed the stack\r
+  @retval EFI_ACCESS_DENIED     The pop operation underflowed the stack.\r
 \r
 **/\r
 EFI_STATUS \r
@@ -163,7 +161,7 @@ PopBool (
   it will be cleared by CoreSchedule(), and then the driver can be\r
   dispatched.\r
 \r
-  @param  DriverEntry           DriverEntry element to update \r
+  @param  DriverEntry           DriverEntry element to update .\r
 \r
   @retval EFI_SUCCESS           It always works.\r
 \r
@@ -203,7 +201,7 @@ CorePreProcessDepex (
   routine in this case. The SOR is just ignored and is a nop in the grammer.\r
   POSTFIX means all the math is done on top of the stack.\r
 \r
-  @param  DriverEntry           DriverEntry element to update \r
+  @param  DriverEntry           DriverEntry element to update. \r
 \r
   @retval TRUE                  If driver is ready to run. \r
   @retval FALSE                 If driver is not ready to run or some fatal error \r
@@ -243,7 +241,7 @@ CoreIsSchedulable (
 \r
   //\r
   // Clean out memory leaks in Depex Boolean stack. Leaks are only caused by\r
-  //  incorrectly formed DEPEX expressions\r
+  // incorrectly formed DEPEX expressions\r
   //\r
   mDepexEvaluationStackPointer = mDepexEvaluationStack;\r
 \r