Hi, Faccenda

Thanks for your patch, we will follow the process to check in it.

Best Regards,
Siyuan

-----Original Message-----
From: Mauro Faccenda [mailto:[email protected]] 
Sent: Tuesday, April 22, 2014 11:47 PM
To: [email protected]
Subject: [edk2] [PATCH] NetworkPkg/UefiPxeBcDxe: fix typo in function name 
PxeBcFlushStaionIp->PxeBcFlushStationIp

The function name is PxeBcFlushStaionIp and should be PxeBcFlushSta*t*ionIp.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Mauro Faccenda <faccenda <at> gmail.com>

---
Index: UefiPxeBcDxe/PxeBcDhcp4.c
===================================================================
--- UefiPxeBcDxe/PxeBcDhcp4.c (revision 15478)
+++ UefiPxeBcDxe/PxeBcDhcp4.c (working copy)
@@ -1595,7 +1595,7 @@
   CopyMem (&PxeMode->StationIp, &Private->StationIp, sizeof 
(EFI_IPv4_ADDRESS));
   CopyMem (&PxeMode->SubnetMask, &Private->SubnetMask, sizeof 
(EFI_IPv4_ADDRESS));

-  Status = PxeBcFlushStaionIp (Private, &Private->StationIp, 
&Private->SubnetMask);
+  Status = PxeBcFlushStationIp (Private, &Private->StationIp,
&Private->SubnetMask);
   if (EFI_ERROR (Status)) {
     goto ON_EXIT;
   }
Index: UefiPxeBcDxe/PxeBcDhcp6.c
===================================================================
--- UefiPxeBcDxe/PxeBcDhcp6.c (revision 15478)
+++ UefiPxeBcDxe/PxeBcDhcp6.c (working copy)
@@ -1852,7 +1852,7 @@
     return Status;
   }

-  Status = PxeBcFlushStaionIp (Private, &Private->StationIp, NULL);
+  Status = PxeBcFlushStationIp (Private, &Private->StationIp, NULL);
   if (EFI_ERROR (Status)) {
     PxeBcUnregisterIp6Address (Private);
     Dhcp6->Stop (Dhcp6);
Index: UefiPxeBcDxe/PxeBcImpl.c
===================================================================
--- UefiPxeBcDxe/PxeBcImpl.c (revision 15478)
+++ UefiPxeBcDxe/PxeBcImpl.c (working copy)
@@ -2024,7 +2024,7 @@
     CopyMem (&Private->SubnetMask ,NewSubnetMask, sizeof (EFI_IP_ADDRESS));
   }

-  Status = PxeBcFlushStaionIp (Private, NewStationIp, NewSubnetMask);
+  Status = PxeBcFlushStationIp (Private, NewStationIp, NewSubnetMask);
 ON_EXIT:
   return Status;
 }
Index: UefiPxeBcDxe/PxeBcSupport.c
===================================================================
--- UefiPxeBcDxe/PxeBcSupport.c (revision 15478)
+++ UefiPxeBcDxe/PxeBcSupport.c (working copy)
@@ -28,7 +28,7 @@

 **/
 EFI_STATUS
-PxeBcFlushStaionIp (
+PxeBcFlushStationIp (
   PXEBC_PRIVATE_DATA       *Private,
   EFI_IP_ADDRESS           *StationIp,
   EFI_IP_ADDRESS           *SubnetMask     OPTIONAL
Index: UefiPxeBcDxe/PxeBcSupport.h
===================================================================
--- UefiPxeBcDxe/PxeBcSupport.h (revision 15478)
+++ UefiPxeBcDxe/PxeBcSupport.h (working copy)
@@ -38,7 +38,7 @@

 **/
 EFI_STATUS
-PxeBcFlushStaionIp (
+PxeBcFlushStationIp (
   PXEBC_PRIVATE_DATA       *Private,
   EFI_IP_ADDRESS           *StationIp,
   EFI_IP_ADDRESS           *SubnetMask     OPTIONAL

---

------------------------------------------------------------------------------
Start Your Social Network Today - Download eXo Platform Build your Enterprise 
Intranet with eXo Platform Software Java Based Open Source Intranet - Social, 
Extensible, Cloud Ready Get Started Now And Turn Your Intranet Into A 
Collaboration Platform http://p.sf.net/sfu/ExoPlatform 
_______________________________________________
edk2-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-devel

------------------------------------------------------------------------------
Start Your Social Network Today - Download eXo Platform
Build your Enterprise Intranet with eXo Platform Software
Java Based Open Source Intranet - Social, Extensible, Cloud Ready
Get Started Now And Turn Your Intranet Into A Collaboration Platform
http://p.sf.net/sfu/ExoPlatform
_______________________________________________
edk2-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to