]> git.proxmox.com Git - mirror_edk2.git/blobdiff - SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/X64/ArchDebugSupport.c
SourceLevelDebugPkg: Clean up source files
[mirror_edk2.git] / SourceLevelDebugPkg / Library / DebugAgent / DebugAgentCommon / X64 / ArchDebugSupport.c
index 08cef0154f8b0b10e4695d5f03baf91751b22acb..a0e56481a51d2bac09ba24172a64383c224cceba 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Supporting functions for X64 architecture.\r
 \r
-  Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2010 - 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
@@ -62,7 +62,7 @@ InitializeDebugIdt (
   IdtEntry[DEBUG_TIMER_VECTOR].Bits.GateType        = IA32_IDT_GATE_TYPE_INTERRUPT_32;\r
 \r
   //\r
-  // If the CPU supports Debug Extensions(CPUID:01 EDX:BIT2), then \r
+  // If the CPU supports Debug Extensions(CPUID:01 EDX:BIT2), then\r
   // Set DE flag in CR4 to enable IO breakpoint\r
   //\r
   AsmCpuid (1, NULL, NULL, NULL, &RegEdx);\r
@@ -75,7 +75,7 @@ InitializeDebugIdt (
   Retrieve exception handler from IDT table by ExceptionNum.\r
 \r
   @param[in]  ExceptionNum    Exception number\r
\r
+\r
   @return Exception handler\r
 \r
 **/\r
@@ -93,13 +93,13 @@ GetExceptionHandlerInIdtEntry (
   return (VOID *) (IdtEntry[ExceptionNum].Bits.OffsetLow |\r
                   (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetHigh) << 16) |\r
                   (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetUpper) << 32));\r
-} \r
+}\r
 \r
 /**\r
   Set exception handler in IDT table by ExceptionNum.\r
 \r
   @param[in]  ExceptionNum      Exception number\r
-  @param[in]  ExceptionHandler  Exception Handler to be set \r
+  @param[in]  ExceptionHandler  Exception Handler to be set\r
 \r
 **/\r
 VOID\r