]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/Library/EblNetworkLib/EblNetworkLib.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / EmbeddedPkg / Library / EblNetworkLib / EblNetworkLib.c
index 3b0f6a1c71e4281e419a3ac99327c0c79a1f0b56..1c945cd33b5a18df3adfd6a498353b9897be7273 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\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
@@ -32,7 +32,7 @@ EblGetCurrentIpAddress (
 {\r
   EFI_STATUS                  Status;\r
   EFI_PXE_BASE_CODE_PROTOCOL  *Pxe;\r
-  \r
+\r
   Status = gBS->LocateProtocol (&gEfiPxeBaseCodeProtocolGuid, NULL, (VOID **)&Pxe);\r
   if (EFI_ERROR(Status)) {\r
     return Status;\r
@@ -76,13 +76,13 @@ EblLoadFileBootTypeString (
 {\r
   EFI_STATUS    Status;\r
   VOID          *NullPtr;\r
-  \r
+\r
   Status = gBS->HandleProtocol (Handle, &gEfiPxeBaseCodeProtocolGuid, &NullPtr);\r
   if (!EFI_ERROR (Status)) {\r
     return "EFI PXE Network Boot";\r
   }\r
-  \r
-  return ""; \r
+\r
+  return "";\r
 }\r
 \r
 EFI_STATUS\r
@@ -93,7 +93,7 @@ EblPerformDHCP (
 {\r
   EFI_STATUS                  Status;\r
   EFI_PXE_BASE_CODE_PROTOCOL  *Pxe;\r
-  \r
+\r
   Status = gBS->LocateProtocol (&gEfiPxeBaseCodeProtocolGuid, NULL, (VOID **)&Pxe);\r
   if (EFI_ERROR(Status)) {\r
     return Status;\r
@@ -118,7 +118,7 @@ EblSetStationIp (
 {\r
   EFI_STATUS                  Status;\r
   EFI_PXE_BASE_CODE_PROTOCOL  *Pxe;\r
-  \r
+\r
   Status = gBS->LocateProtocol (&gEfiPxeBaseCodeProtocolGuid, NULL, (VOID **)&Pxe);\r
   if (EFI_ERROR(Status)) {\r
     return Status;\r
@@ -128,12 +128,12 @@ EblSetStationIp (
   if (EFI_ERROR(Status) && (Status != EFI_ALREADY_STARTED)) {\r
     return Status;\r
   }\r
-     \r
+\r
   Status = Pxe->SetStationIp (Pxe, NewStationIp, NewSubnetMask);\r
   return Status;\r
 }\r
 \r
-  \r
+\r
 EFI_STATUS\r
 EFIAPI\r
 EblMtftp (\r
@@ -150,12 +150,12 @@ EblMtftp (
 {\r
   EFI_STATUS                  Status;\r
   EFI_PXE_BASE_CODE_PROTOCOL  *Pxe;\r
-  \r
+\r
   Status = gBS->LocateProtocol (&gEfiPxeBaseCodeProtocolGuid, NULL, (VOID **)&Pxe);\r
   if (EFI_ERROR(Status)) {\r
     return Status;\r
   }\r
-  \r
+\r
   Status = Pxe->Mtftp (\r
                   Pxe,\r
                   Operation,\r
@@ -170,4 +170,4 @@ EblMtftp (
                   );\r
   return Status;\r
 }\r
-  \r
+\r