]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/Network/MnpDxe/MnpVlan.c
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Universal / Network / MnpDxe / MnpVlan.c
index 98cbc2e35da85c906f15c8d1ec29429b72f7063f..c81bd07c651ba3024c117071e858367c3ace04dd 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   VLAN Config Protocol implementation and VLAN packet process routine.\r
 \r
-Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2009 - 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\r
 of the BSD License which accompanies this distribution.  The full\r
@@ -237,7 +237,7 @@ MnpInsertVlanTag (
   @param[in]      Buffer             Pointer to the buffer contains the array of VLAN_TCI.\r
   @param[in]      NumberOfVlan       Pointer to number of VLAN.\r
   @param[out]     NewNumberOfVlan    Pointer to number of unique VLAN.\r
-  \r
+\r
   @retval EFI_SUCCESS            The VLAN variable is successfully checked.\r
   @retval EFI_OUT_OF_RESOURCES   There is not enough resource to set the configuration.\r
 \r
@@ -259,7 +259,7 @@ MnpCheckVlanVariable (
   Count = 0;\r
   FoundDuplicateItem  = FALSE;\r
   Status = EFI_SUCCESS;\r
-  \r
+\r
   for (Index = 0; Index < NumberOfVlan; Index++) {\r
    for (Index2 = Index + 1; Index2 < NumberOfVlan; Index2++) {\r
      if (Buffer[Index].Bits.Vid == Buffer[Index2].Bits.Vid) {\r
@@ -280,7 +280,7 @@ MnpCheckVlanVariable (
   if (Count != 0) {\r
     Status = MnpSetVlanVariable (MnpDeviceData, *NewNumberOfVlan, Buffer);\r
   }\r
-  \r
+\r
   return Status;\r
 }\r
 \r