]> git.proxmox.com Git - mirror_edk2.git/blobdiff - CryptoPkg/Library/BaseCryptLibOnProtocolPpi/PeiCryptLib.c
CryptoPkg: Apply uncrustify changes
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLibOnProtocolPpi / PeiCryptLib.c
index 4fd0e4d3bbf6a2e289768fcc87841b9fe9f4293f..51f858302fc14edf184bc984e290d6e28e5e4429 100644 (file)
@@ -33,14 +33,14 @@ GetCryptoServices (
   UINTN             Version;\r
 \r
   CryptoPpi = NULL;\r
-  Status = PeiServicesLocatePpi (\r
-             &gEdkiiCryptoPpiGuid,\r
-             0,\r
-             NULL,\r
-             (VOID **)&CryptoPpi\r
-             );\r
-  if (EFI_ERROR (Status) || CryptoPpi == NULL) {\r
-    DEBUG((DEBUG_ERROR, "[PeiCryptLib] Failed to locate Crypto PPI. Status = %r\n", Status));\r
+  Status    = PeiServicesLocatePpi (\r
+                &gEdkiiCryptoPpiGuid,\r
+                0,\r
+                NULL,\r
+                (VOID **)&CryptoPpi\r
+                );\r
+  if (EFI_ERROR (Status) || (CryptoPpi == NULL)) {\r
+    DEBUG ((DEBUG_ERROR, "[PeiCryptLib] Failed to locate Crypto PPI. Status = %r\n", Status));\r
     ASSERT_EFI_ERROR (Status);\r
     ASSERT (CryptoPpi != NULL);\r
     return NULL;\r
@@ -48,7 +48,7 @@ GetCryptoServices (
 \r
   Version = CryptoPpi->GetVersion ();\r
   if (Version < EDKII_CRYPTO_VERSION) {\r
-    DEBUG((DEBUG_ERROR, "[PeiCryptLib] Crypto PPI unsupported version %d\n", Version));\r
+    DEBUG ((DEBUG_ERROR, "[PeiCryptLib] Crypto PPI unsupported version %d\n", Version));\r
     ASSERT (Version >= EDKII_CRYPTO_VERSION);\r
     return NULL;\r
   }\r