]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/Library/GdbSerialDebugPortLib/GdbSerialDebugPortLib.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / EmbeddedPkg / Library / GdbSerialDebugPortLib / GdbSerialDebugPortLib.c
index cceb80dbf0e2b176e5fed2ebc6c052eaad62158e..e3d1b47cc4e9ffb426655a7b87bfc7a01ce23b42 100644 (file)
@@ -2,7 +2,7 @@
   Basic serial IO abstaction for GDB\r
 \r
   Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
-  \r
+\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
@@ -28,10 +28,10 @@ UINTN                   gTimeOut = 0;
 \r
 /**\r
   The constructor function initializes the UART.\r
-  \r
+\r
   @param  ImageHandle   The firmware allocated handle for the EFI image.\r
   @param  SystemTable   A pointer to the EFI System Table.\r
-  \r
+\r
   @retval EFI_SUCCESS   The constructor always returns EFI_SUCCESS.\r
 \r
 **/\r
@@ -43,20 +43,20 @@ GdbSerialLibDebugPortConstructor (
   )\r
 {\r
   EFI_STATUS    Status;\r
-  \r
+\r
   Status = gBS->LocateProtocol (&gEfiDebugPortProtocolGuid, NULL, (VOID **)&gDebugPort);\r
   if (!EFI_ERROR (Status)) {\r
     gTimeOut = PcdGet32 (PcdGdbMaxPacketRetryCount);\r
     gDebugPort->Reset (gDebugPort);\r
   }\r
-  \r
+\r
   return Status;\r
 }\r
 \r
 \r
 \r
 /**\r
-  Sets the baud rate, receive FIFO depth, transmit/receice time out, parity, \r
+  Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,\r
   data buts, and stop bits on a serial device. This call is optional as the serial\r
   port will be set up with defaults base on PCD values.\r
 \r
@@ -77,14 +77,14 @@ GdbSerialLibDebugPortConstructor (
 RETURN_STATUS\r
 EFIAPI\r
 GdbSerialInit (\r
-  IN UINT64     BaudRate, \r
-  IN UINT8      Parity, \r
-  IN UINT8      DataBits, \r
-  IN UINT8      StopBits \r
+  IN UINT64     BaudRate,\r
+  IN UINT8      Parity,\r
+  IN UINT8      DataBits,\r
+  IN UINT8      StopBits\r
   )\r
 {\r
   EFI_STATUS  Status;\r
-  \r
+\r
   Status = gDebugPort->Reset (gDebugPort);\r
   return Status;\r
 }\r
@@ -96,18 +96,18 @@ GdbSerialInit (
 \r
   @return TRUE  - Character availible\r
   @return FALSE - Character not availible\r
-  \r
+\r
 **/\r
 BOOLEAN\r
 EFIAPI\r
 GdbIsCharAvailable (\r
   VOID\r
-  )  \r
+  )\r
 {\r
   EFI_STATUS  Status;\r
-  \r
+\r
   Status = gDebugPort->Poll (gDebugPort);\r
-  \r
+\r
   return (Status == EFI_SUCCESS ? TRUE : FALSE);\r
 }\r
 \r
@@ -116,7 +116,7 @@ GdbIsCharAvailable (
   Get a character from GDB. This function must be able to run in interrupt context.\r
 \r
   @return A character from GDB\r
-  \r
+\r
 **/\r
 CHAR8\r
 EFIAPI\r
@@ -127,12 +127,12 @@ GdbGetChar (
   EFI_STATUS  Status;\r
   CHAR8       Char;\r
   UINTN       BufferSize;\r
-  \r
+\r
   do {\r
     BufferSize = sizeof (Char);\r
     Status = gDebugPort->Read (gDebugPort, gTimeOut, &BufferSize, &Char);\r
   } while (EFI_ERROR (Status) || BufferSize != sizeof (Char));\r
-    \r
+\r
   return Char;\r
 }\r
 \r
@@ -153,12 +153,12 @@ GdbPutChar (
 {\r
   EFI_STATUS  Status;\r
   UINTN       BufferSize;\r
-  \r
+\r
   do {\r
     BufferSize = sizeof (Char);\r
     Status = gDebugPort->Write (gDebugPort, gTimeOut, &BufferSize, &Char);\r
   } while (EFI_ERROR (Status) || BufferSize != sizeof (Char));\r
-    \r
+\r
   return;\r
 }\r
 \r