summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/Network/Mtftp4Dxe
diff options
context:
space:
mode:
authorniry <niry@6f19259b-4bc3-4df7-8a09-765794883524>2009-02-24 07:47:59 +0000
committerniry <niry@6f19259b-4bc3-4df7-8a09-765794883524>2009-02-24 07:47:59 +0000
commit5be56d99a9f4a597971b55e9107756f052d041ac (patch)
tree0ca1a4b78025b372f5dbd3c2c078bf4639809d1c /MdeModulePkg/Universal/Network/Mtftp4Dxe
parenteac564ea93e49191f13fa29a506cf104a80506b0 (diff)
downloadedk2-5be56d99a9f4a597971b55e9107756f052d041ac.zip
edk2-5be56d99a9f4a597971b55e9107756f052d041ac.tar.gz
edk2-5be56d99a9f4a597971b55e9107756f052d041ac.tar.bz2
Fix function comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7636 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Network/Mtftp4Dxe')
-rw-r--r--MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Driver.c11
-rw-r--r--MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.h2
2 files changed, 11 insertions, 2 deletions
diff --git a/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Driver.c b/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Driver.c
index ceeee05..56c993e 100644
--- a/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Driver.c
+++ b/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Driver.c
@@ -66,7 +66,16 @@ Mtftp4DriverEntryPoint (
@retval EFI_SUCCESS The controller has UDP service binding protocol
installed, MTFTP can support it.
- @retval Others MTFTP can't support the controller.
+ @retval EFI_ALREADY_STARTED The device specified by ControllerHandle and
+ RemainingDevicePath is already being managed by
+ the driver specified by This.
+ @retval EFI_ACCESS_DENIED The device specified by ControllerHandle and
+ RemainingDevicePath is already being managed by a
+ different driver or an application that requires
+ exclusive access.
+ @retval EFI_UNSUPPORTED The device specified by ControllerHandle and
+ RemainingDevicePath is not supported by the driver
+ specified by This.
**/
EFI_STATUS
diff --git a/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.h b/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.h
index efc0e4a..266c32e 100644
--- a/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.h
+++ b/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.h
@@ -73,7 +73,7 @@ struct _MTFTP4_SERVICE {
UINT16 ChildrenNum;
LIST_ENTRY Children;
- EFI_EVENT Timer; // Ticking timer for all the MTFTP clients
+ EFI_EVENT Timer; ///< Ticking timer for all the MTFTP clients
EFI_EVENT TimerToGetMap;
EFI_HANDLE Controller;