]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/DebugSupportDxe/DebugSupport.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdeModulePkg / Universal / DebugSupportDxe / DebugSupport.c
index b7c1c5c4dd9eb96b4b5eef7d3f9991bfa266d17b..349a932b0652d9014f2b6920b07b159acf236aad 100644 (file)
@@ -2,13 +2,7 @@
   Top level C file for debug support driver.  Contains initialization function.\r
 \r
 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
-This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -22,7 +16,6 @@ EFI_DEBUG_SUPPORT_PROTOCOL  mDebugSupportProtocolInterface = {
   InvalidateInstructionCache\r
 };\r
 \r
-\r
 /**\r
   Debug Support Driver entry point.\r
 \r
@@ -40,8 +33,8 @@ EFI_DEBUG_SUPPORT_PROTOCOL  mDebugSupportProtocolInterface = {
 EFI_STATUS\r
 EFIAPI\r
 InitializeDebugSupportDriver (\r
-  IN EFI_HANDLE               ImageHandle,\r
-  IN EFI_SYSTEM_TABLE         *SystemTable\r
+  IN EFI_HANDLE        ImageHandle,\r
+  IN EFI_SYSTEM_TABLE  *SystemTable\r
   )\r
 {\r
   EFI_LOADED_IMAGE_PROTOCOL   *LoadedImageProtocolPtr;\r
@@ -69,7 +62,7 @@ InitializeDebugSupportDriver (
       Status = gBS->OpenProtocol (\r
                       HandlePtr[NumHandles],\r
                       &gEfiDebugSupportProtocolGuid,\r
-                      (VOID **) &DebugSupportProtocolPtr,\r
+                      (VOID **)&DebugSupportProtocolPtr,\r
                       ImageHandle,\r
                       NULL,\r
                       EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
@@ -83,6 +76,7 @@ InitializeDebugSupportDriver (
         goto ErrExit;\r
       }\r
     } while (NumHandles > 0);\r
+\r
     FreePool (HandlePtr);\r
   }\r
 \r
@@ -92,7 +86,7 @@ InitializeDebugSupportDriver (
   Status = gBS->OpenProtocol (\r
                   ImageHandle,\r
                   &gEfiLoadedImageProtocolGuid,\r
-                  (VOID **) &LoadedImageProtocolPtr,\r
+                  (VOID **)&LoadedImageProtocolPtr,\r
                   ImageHandle,\r
                   NULL,\r
                   EFI_OPEN_PROTOCOL_GET_PROTOCOL\r