]> 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 bf668b5a97369b997ea9aaba6ec4aee84b2cd9fe..349a932b0652d9014f2b6920b07b159acf236aad 100644 (file)
@@ -1,14 +1,8 @@
 /** @file\r
   Top level C file for debug support driver.  Contains initialization function.\r
 \r
-Copyright (c) 2006 - 2009, Intel Corporation. <BR>\r
-All rights reserved. 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
+Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -22,16 +16,15 @@ EFI_DEBUG_SUPPORT_PROTOCOL  mDebugSupportProtocolInterface = {
   InvalidateInstructionCache\r
 };\r
 \r
-\r
 /**\r
-  Debug Support Driver entry point. \r
+  Debug Support Driver entry point.\r
 \r
-  Checks to see if there's not already a Debug Support protocol installed for \r
+  Checks to see if there's not already a Debug Support protocol installed for\r
   the selected processor before installing it.\r
 \r
-  @param[in] ImageHandle       The firmware allocated handle for the EFI image.  \r
+  @param[in] ImageHandle       The firmware allocated handle for the EFI image.\r
   @param[in] SystemTable       A pointer to the EFI System Table.\r
-  \r
+\r
   @retval EFI_SUCCESS          The entry point is executed successfully.\r
   @retval EFI_ALREADY_STARTED  Debug Support protocol is installed already.\r
   @retval other                Some error occurs when executing this entry point.\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
@@ -105,7 +99,7 @@ InitializeDebugSupportDriver (
   LoadedImageProtocolPtr->Unload = PlUnloadDebugSupportDriver;\r
 \r
   //\r
-  // Call hook for processor specific initialization \r
+  // Call hook for processor specific initialization\r
   //\r
   Status = PlInitializeDebugSupportDriver ();\r
   ASSERT (!EFI_ERROR (Status));\r