X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;ds=sidebyside;f=NetworkPkg%2FMtftp6Dxe%2FMtftp6Driver.c;h=9aa401e408970ee1d1c2eee4b014d141957702bc;hb=76389e18c04833a87811550ed6db06f1790aacde;hp=d448c78a347db8029f9c562c9369c643fdccaeaa;hpb=a3bcde70e6dc69000f85cc5deee98101d2ae200a;p=mirror_edk2.git diff --git a/NetworkPkg/Mtftp6Dxe/Mtftp6Driver.c b/NetworkPkg/Mtftp6Dxe/Mtftp6Driver.c index d448c78a34..9aa401e408 100644 --- a/NetworkPkg/Mtftp6Dxe/Mtftp6Driver.c +++ b/NetworkPkg/Mtftp6Dxe/Mtftp6Driver.c @@ -2,7 +2,7 @@ Driver Binding functions and Service Binding functions implementation for Mtftp6 Driver. - Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+ Copyright (c) 2009 - 2011, 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 @@ -270,7 +270,7 @@ Mtftp6DriverEntryPoint ( /** - Test to see if this driver supports ControllerHandle. This service + Test to see if this driver supports Controller. This service is called by the EFI boot service ConnectController(). In order to make drivers as small as possible, there are calling restrictions for this service. ConnectController() must @@ -278,7 +278,7 @@ Mtftp6DriverEntryPoint ( Supported(), it must also follow these calling restrictions. @param[in] This Protocol instance pointer. - @param[in] ControllerHandle Handle of device to test + @param[in] Controller Handle of device to test @param[in] RemainingDevicePath Optional parameter use to pick a specific child. device to start. @@ -306,7 +306,7 @@ Mtftp6DriverBindingSupported ( /** - Start this driver on ControllerHandle. This service is called by the + Start this driver on Controller. This service is called by the EFI boot service ConnectController(). In order to make drivers as small as possible, there are calling restrictions for this service. ConnectController() must follow these @@ -314,12 +314,12 @@ Mtftp6DriverBindingSupported ( must also follow these calling restrictions. @param[in] This Protocol instance pointer. - @param[in] ControllerHandle Handle of device to bind driver to. + @param[in] Controller Handle of device to bind driver to. @param[in] RemainingDevicePath Optional parameter use to pick a specific child device to start. - @retval EFI_SUCCESS This driver is added to ControllerHandle. - @retval EFI_ALREADY_STARTED This driver is already running on ControllerHandle. + @retval EFI_SUCCESS This driver is added to Controller. + @retval EFI_ALREADY_STARTED This driver is already running on Controller. @retval Others This driver does not support this device. **/ @@ -402,20 +402,20 @@ ON_ERROR: /** - Stop this driver on ControllerHandle. This service is called by the + Stop this driver on Controller. This service is called by the EFI boot service DisconnectController(). In order to - make drivers as small as possible, there are a few calling + make drivers as small as possible, there are calling restrictions for this service. DisconnectController() must follow these calling restrictions. If any other agent wishes - to call Stop() it must also follow these calling restrictions. + to call Stop(), it must also follow these calling restrictions. @param[in] This Protocol instance pointer. - @param[in] ControllerHandle Handle of device to stop driver on + @param[in] Controller Handle of device to stop driver on @param[in] NumberOfChildren Number of Handles in ChildHandleBuffer. If number of children is zero, stop the entire bus driver. @param[in] ChildHandleBuffer List of Child Handles to Stop. - @retval EFI_SUCCESS This driver is removed ControllerHandle. + @retval EFI_SUCCESS This driver is removed Controller. @retval EFI_DEVICE_ERROR An unexpected error. @retval Others This driver was not removed from this device.