]> git.proxmox.com Git - mirror_edk2.git/blobdiff - SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugAgent.h
SourceLevelDebugPkg: Clean up source files
[mirror_edk2.git] / SourceLevelDebugPkg / Library / DebugAgent / DebugAgentCommon / DebugAgent.h
index e09ead9cf07433ea259af116b844a727ce9e0729..8b207445b0a4b4dd8be062bf377951cddc7568dd 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Command header of for Debug Agent library instance.\r
 \r
-  Copyright (c) 2010 - 2016, 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
@@ -126,7 +126,7 @@ typedef union {
     //\r
     UINT32  BreakOnNextSmi    : 1;   // 1: Break on next SMI\r
     UINT32  PrintErrorLevel   : 4;   // Bitmask of print error level for debug message\r
-    UINT32  BreakOnBootScript : 1;   // 1: Break before executing boot script \r
+    UINT32  BreakOnBootScript : 1;   // 1: Break before executing boot script\r
     UINT32  Reserved2         : 26;\r
   } Bits;\r
   UINT64  Uint64;\r
@@ -285,7 +285,7 @@ DebugReadBreakSymbol (
 \r
   @param[in] ErrorLevel  The error level of the debug message.\r
   @param[in] Format      Format string for the debug message to print.\r
-  @param[in] ...         Variable argument list whose contents are accessed \r
+  @param[in] ...         Variable argument list whose contents are accessed\r
                          based on the format string specified by Format.\r
 \r
 **/\r
@@ -322,13 +322,13 @@ MultiProcessorDebugSupport (
 \r
 /**\r
   Find and report module image info to HOST.\r
-  \r
+\r
   @param[in] AlignSize      Image aligned size.\r
-  \r
+\r
 **/\r
-VOID \r
+VOID\r
 FindAndReportModuleImageInfo (\r
-  IN UINTN          AlignSize                   \r
+  IN UINTN          AlignSize\r
   );\r
 \r
 /**\r
@@ -338,7 +338,7 @@ FindAndReportModuleImageInfo (
   @retval  FALSE    IDT entries were not setup by Debug Agent.\r
 \r
 **/\r
-BOOLEAN \r
+BOOLEAN\r
 IsDebugAgentInitialzed (\r
   VOID\r
   );\r
@@ -362,7 +362,7 @@ UpdateMailboxChecksum (
   @param[in]  Mailbox  Debug Agent Mailbox pointer.\r
 \r
 **/\r
-VOID \r
+VOID\r
 VerifyMailboxChecksum (\r
   IN DEBUG_AGENT_MAILBOX    *Mailbox\r
   );\r
@@ -374,17 +374,17 @@ VerifyMailboxChecksum (
   @param[in]  FlagValue     Debug flag value.\r
 \r
 **/\r
-VOID \r
+VOID\r
 SetDebugFlag (\r
   IN UINT64                 FlagMask,\r
-  IN UINT32                 FlagValue                          \r
+  IN UINT32                 FlagValue\r
   );\r
 \r
 /**\r
   Get debug flag in mailbox.\r
 \r
   @param[in]  FlagMask      Debug flag mask value.\r
-  \r
+\r
   @return Debug flag value.\r
 \r
 **/\r
@@ -399,10 +399,10 @@ GetDebugFlag (
   @param[in]  Mailbox  Debug Agent Mailbox pointer.\r
   @param[in]  Index    Mailbox content index.\r
   @param[in]  Value    Value to be set into mail box.\r
-  \r
+\r
 **/\r
 VOID\r
-UpdateMailboxContent ( \r
+UpdateMailboxContent (\r
   IN DEBUG_AGENT_MAILBOX    *Mailbox,\r
   IN UINTN                  Index,\r
   IN UINT64                 Value\r
@@ -412,7 +412,7 @@ UpdateMailboxContent (
   Retrieve exception handler from IDT table by ExceptionNum.\r
 \r
   @param[in]  ExceptionNum    Exception number\r
\r
+\r
   @return Exception handler\r
 \r
 **/\r
@@ -425,7 +425,7 @@ GetExceptionHandlerInIdtEntry (
   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
@@ -437,15 +437,15 @@ SetExceptionHandlerInIdtEntry (
 /**\r
   Prints a debug message to the debug output device if the specified error level is enabled.\r
 \r
-  If any bit in ErrorLevel is also set in DebugPrintErrorLevelLib function \r
-  GetDebugPrintErrorLevel (), then print the message specified by Format and the \r
+  If any bit in ErrorLevel is also set in DebugPrintErrorLevelLib function\r
+  GetDebugPrintErrorLevel (), then print the message specified by Format and the\r
   associated variable argument list to the debug output device.\r
 \r
   If Format is NULL, then ASSERT().\r
 \r
   @param[in] ErrorLevel  The error level of the debug message.\r
   @param[in] IsSend      Flag of debug message to declare that the data is being sent or being received.\r
-  @param[in] Data        Variable argument list whose contents are accessed \r
+  @param[in] Data        Variable argument list whose contents are accessed\r
   @param[in] Length      based on the format string specified by Format.\r
 \r
 **/\r
@@ -455,7 +455,7 @@ DebugAgentDataMsgPrint (
   IN UINT8             ErrorLevel,\r
   IN BOOLEAN           IsSend,\r
   IN UINT8             *Data,\r
-  IN UINT8             Length  \r
+  IN UINT8             Length\r
   );\r
 \r
 /**\r