X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=NetworkPkg%2FDhcp6Dxe%2FDhcp6Driver.c;h=eaa18fcff3df03e3acfe0d18d3502264a8eb0276;hp=de53a1a9b4125c6723af85e163a1dd669c28eb46;hb=f75a7f568e6d0944327970b3f3f2dafd9bba76b1;hpb=9095d37b8fe5bfc3d02adad6ba7fd7359ebc0107 diff --git a/NetworkPkg/Dhcp6Dxe/Dhcp6Driver.c b/NetworkPkg/Dhcp6Dxe/Dhcp6Driver.c index de53a1a9b4..eaa18fcff3 100644 --- a/NetworkPkg/Dhcp6Dxe/Dhcp6Driver.c +++ b/NetworkPkg/Dhcp6Dxe/Dhcp6Driver.c @@ -2,7 +2,7 @@ Driver Binding functions and Service Binding functions implementationfor for Dhcp6 Driver. - Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.
+ Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -328,7 +328,7 @@ Dhcp6CreateInstance ( /** Callback function which provided by user to remove one node in NetDestroyLinkList process. - + @param[in] Entry The entry to be removed. @param[in] Context Pointer to the callback context corresponds to the Context in NetDestroyLinkList. @@ -352,7 +352,7 @@ Dhcp6DestroyChildEntry ( Instance = NET_LIST_USER_STRUCT_S (Entry, DHCP6_INSTANCE, Link, DHCP6_INSTANCE_SIGNATURE); ServiceBinding = (EFI_SERVICE_BINDING_PROTOCOL *) Context; - + return ServiceBinding->DestroyChild (ServiceBinding, Instance->Handle); } @@ -558,7 +558,7 @@ Dhcp6DriverBindingStop ( if (!IsListEmpty (&Service->Child)) { // // Destroy all the children instances before destory the service. - // + // List = &Service->Child; Status = NetDestroyLinkList ( List, @@ -591,7 +591,7 @@ Dhcp6DriverBindingStop ( Dhcp6DestroyService (Service); Status = EFI_SUCCESS; } - + ON_EXIT: return Status; }