]> git.proxmox.com Git - mirror_edk2.git/blobdiff - SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/Ia32/IntHandlerFuncs.c
SourceLevelDebugPkg: Clean up source files
[mirror_edk2.git] / SourceLevelDebugPkg / Library / PeCoffExtraActionLibDebug / Ia32 / IntHandlerFuncs.c
index ccf3fb1842acfe85ab68df4e282feb22d3737d0b..85cab7c205d30ae2d1b564f094e4b661ca49582a 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Ia32 arch functions to access IDT vector.\r
 \r
-  Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2013 - 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
@@ -24,7 +24,7 @@
   @retval  FALSE    IDT entries were not setuo by Debug Agent.\r
 \r
 **/\r
-BOOLEAN \r
+BOOLEAN\r
 CheckDebugAgentHandler (\r
   IN  IA32_DESCRIPTOR            *IdtDescriptor,\r
   IN  UINTN                      InterruptType\r
@@ -48,7 +48,7 @@ CheckDebugAgentHandler (
 }\r
 \r
 /**\r
-  Save IDT entry for INT1 and update it. \r
+  Save IDT entry for INT1 and update it.\r
 \r
   @param[in]  IdtDescriptor      Pointer to IDT Descriptor.\r
   @param[out] SavedIdtEntry      Original IDT entry returned.\r
@@ -63,7 +63,7 @@ SaveAndUpdateIdtEntry1 (
   IA32_IDT_GATE_DESCRIPTOR   *IdtEntry;\r
   UINT16                     CodeSegment;\r
   UINTN                      InterruptHandler;\r
-  \r
+\r
   IdtEntry = (IA32_IDT_GATE_DESCRIPTOR *) IdtDescriptor->Base;\r
   CopyMem (SavedIdtEntry, &IdtEntry[1], sizeof (IA32_IDT_GATE_DESCRIPTOR));\r
 \r
@@ -80,7 +80,7 @@ SaveAndUpdateIdtEntry1 (
 }\r
 \r
 /**\r
-  Restore IDT entry for INT1. \r
+  Restore IDT entry for INT1.\r
 \r
   @param[in]  IdtDescriptor      Pointer to IDT Descriptor.\r
   @param[in]  RestoredIdtEntry   IDT entry to be restored.\r
@@ -93,7 +93,7 @@ RestoreIdtEntry1 (
   )\r
 {\r
   IA32_IDT_GATE_DESCRIPTOR   *IdtEntry;\r
-  \r
+\r
   IdtEntry = (IA32_IDT_GATE_DESCRIPTOR *) IdtDescriptor->Base;\r
   CopyMem (&IdtEntry[1], RestoredIdtEntry, sizeof (IA32_IDT_GATE_DESCRIPTOR));\r
 }\r