]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StandaloneMmPkg/Core/InstallConfigurationTable.c
StandaloneMmPkg: Apply uncrustify changes
[mirror_edk2.git] / StandaloneMmPkg / Core / InstallConfigurationTable.c
index b3fc0efc4b8c15332a80a142071dece2f2f63979..a4a2de7cd37fb55d23ef47cb9ecf335699198e0f 100644 (file)
@@ -9,7 +9,7 @@
 \r
 #include "StandaloneMmCore.h"\r
 \r
-#define CONFIG_TABLE_SIZE_INCREASED 0x10\r
+#define CONFIG_TABLE_SIZE_INCREASED  0x10\r
 \r
 UINTN  mMmSystemTableAllocateSize = 0;\r
 \r
@@ -33,10 +33,10 @@ UINTN  mMmSystemTableAllocateSize = 0;
 EFI_STATUS\r
 EFIAPI\r
 MmInstallConfigurationTable (\r
-  IN  CONST EFI_MM_SYSTEM_TABLE    *SystemTable,\r
-  IN  CONST EFI_GUID               *Guid,\r
-  IN  VOID                         *Table,\r
-  IN  UINTN                        TableSize\r
+  IN  CONST EFI_MM_SYSTEM_TABLE  *SystemTable,\r
+  IN  CONST EFI_GUID             *Guid,\r
+  IN  VOID                       *Table,\r
+  IN  UINTN                      TableSize\r
   )\r
 {\r
   UINTN                    Index;\r
@@ -87,7 +87,6 @@ MmInstallConfigurationTable (
       &(ConfigurationTable[Index + 1]),\r
       (gMmCoreMmst.NumberOfTableEntries - Index) * sizeof (EFI_CONFIGURATION_TABLE)\r
       );\r
-\r
   } else {\r
     //\r
     // No matching GUIDs were found, so this is an add operation.\r
@@ -107,7 +106,7 @@ MmInstallConfigurationTable (
       // Allocate a table with one additional entry.\r
       //\r
       mMmSystemTableAllocateSize += (CONFIG_TABLE_SIZE_INCREASED * sizeof (EFI_CONFIGURATION_TABLE));\r
-      ConfigurationTable = AllocatePool (mMmSystemTableAllocateSize);\r
+      ConfigurationTable          = AllocatePool (mMmSystemTableAllocateSize);\r
       if (ConfigurationTable == NULL) {\r
         //\r
         // If a new table could not be allocated, then return an error.\r