]> git.proxmox.com Git - mirror_edk2.git/blobdiff - SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/ArchDebugSupport.c
SourceLevelDebugPkg: Clean up source files
[mirror_edk2.git] / SourceLevelDebugPkg / Library / DebugAgent / DebugAgentCommon / Ia32 / ArchDebugSupport.c
index 1aef63f206fd33a5ee109f297d0f856f510d2636..1ecde2d4cc6e97c753f9bfd7a902e6d1d524755c 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Supporting functions for IA32 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
@@ -58,9 +58,9 @@ InitializeDebugIdt (
   IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);\r
   IdtEntry[DEBUG_TIMER_VECTOR].Bits.Selector   = CodeSegment;\r
   IdtEntry[DEBUG_TIMER_VECTOR].Bits.GateType   = IA32_IDT_GATE_TYPE_INTERRUPT_32;\r
-  \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
@@ -73,7 +73,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
@@ -90,13 +90,13 @@ GetExceptionHandlerInIdtEntry (
 \r
   return (VOID *) (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetLow) |\r
                   (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetHigh) << 16));\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