]> git.proxmox.com Git - mirror_edk2.git/blobdiff - NetworkPkg/Udp6Dxe/ComponentName.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / NetworkPkg / Udp6Dxe / ComponentName.c
index 93c2003f348e89eaaa31c286517b05571fac3827..45fb6b4adbd23192571ea1b6989facd5ac6b7131 100644 (file)
@@ -1,15 +1,9 @@
 /** @file\r
   UEFI Component Name(2) protocol implementation for UDP6 driver.\r
 \r
-  Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>\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
-  http://opensource.org/licenses/bsd-license.php.\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -18,6 +12,7 @@
 //\r
 // EFI Component Name Functions\r
 //\r
+\r
 /**\r
   Retrieves a Unicode string that is the user-readable name of the driver.\r
 \r
@@ -65,7 +60,6 @@ Udp6ComponentNameGetDriverName (
   OUT CHAR16                       **DriverName\r
   );\r
 \r
-\r
 /**\r
   Retrieves a Unicode string that is the user-readable name of the controller\r
   that is being managed by a driver.\r
@@ -156,14 +150,13 @@ GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL  gUdp6ComponentName =
 //\r
 // EFI Component Name 2 Protocol\r
 //\r
-GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gUdp6ComponentName2 = {\r
-  (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Udp6ComponentNameGetDriverName,\r
-  (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Udp6ComponentNameGetControllerName,\r
+GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL  gUdp6ComponentName2 = {\r
+  (EFI_COMPONENT_NAME2_GET_DRIVER_NAME)Udp6ComponentNameGetDriverName,\r
+  (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME)Udp6ComponentNameGetControllerName,\r
   "en"\r
 };\r
 \r
-\r
-GLOBAL_REMOVE_IF_UNREFERENCED EFI_UNICODE_STRING_TABLE mUdp6DriverNameTable[] = {\r
+GLOBAL_REMOVE_IF_UNREFERENCED EFI_UNICODE_STRING_TABLE  mUdp6DriverNameTable[] = {\r
   {\r
     "eng;en",\r
     L"UDP6 Network Service Driver"\r
@@ -228,7 +221,7 @@ Udp6ComponentNameGetDriverName (
            This->SupportedLanguages,\r
            mUdp6DriverNameTable,\r
            DriverName,\r
-           (BOOLEAN) (This == &gUdp6ComponentName)\r
+           (BOOLEAN)(This == &gUdp6ComponentName)\r
            );\r
 }\r
 \r
@@ -237,19 +230,19 @@ Udp6ComponentNameGetDriverName (
 \r
   @param  Udp6[in]                  A pointer to the EFI_UDP6_PROTOCOL.\r
 \r
-  \r
+\r
   @retval EFI_SUCCESS               Update the ControllerNameTable of this instance successfully.\r
   @retval EFI_INVALID_PARAMETER     The input parameter is invalid.\r
-  \r
+\r
 **/\r
 EFI_STATUS\r
 UpdateName (\r
-  IN    EFI_UDP6_PROTOCOL             *Udp6\r
+  IN    EFI_UDP6_PROTOCOL  *Udp6\r
   )\r
 {\r
-  EFI_STATUS                       Status;\r
-  CHAR16                           HandleName[64];\r
-  EFI_UDP6_CONFIG_DATA             Udp6ConfigData;\r
+  EFI_STATUS            Status;\r
+  CHAR16                HandleName[64];\r
+  EFI_UDP6_CONFIG_DATA  Udp6ConfigData;\r
 \r
   if (Udp6 == NULL) {\r
     return EFI_INVALID_PARAMETER;\r
@@ -260,7 +253,9 @@ UpdateName (
   //\r
   Status = Udp6->GetModeData (Udp6, &Udp6ConfigData, NULL, NULL, NULL);\r
   if (!EFI_ERROR (Status)) {\r
-    UnicodeSPrint (HandleName, sizeof (HandleName),\r
+    UnicodeSPrint (\r
+      HandleName,\r
+      sizeof (HandleName),\r
       L"UDPv6 (SrcPort=%d, DestPort=%d)",\r
       Udp6ConfigData.StationPort,\r
       Udp6ConfigData.RemotePort\r
@@ -374,8 +369,8 @@ Udp6ComponentNameGetControllerName (
   OUT CHAR16                       **ControllerName\r
   )\r
 {\r
-  EFI_STATUS                    Status;\r
-  EFI_UDP6_PROTOCOL             *Udp6;\r
+  EFI_STATUS         Status;\r
+  EFI_UDP6_PROTOCOL  *Udp6;\r
 \r
   //\r
   // Only provide names for child handles.\r