From be973ff7f3a7c8b87cac0da9ba416cd9baca3e44 Mon Sep 17 00:00:00 2001 From: jgong5 Date: Fri, 16 Jan 2009 00:01:10 +0000 Subject: [PATCH] added newline after brief summary git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7289 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Include/Protocol/ServiceBinding.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MdePkg/Include/Protocol/ServiceBinding.h b/MdePkg/Include/Protocol/ServiceBinding.h index 5a1896392a..683a956327 100644 --- a/MdePkg/Include/Protocol/ServiceBinding.h +++ b/MdePkg/Include/Protocol/ServiceBinding.h @@ -26,6 +26,7 @@ typedef struct _EFI_SERVICE_BINDING_PROTOCOL EFI_SERVICE_BINDING_PROTOCOL; /** Creates a child handle and installs a protocol. + The CreateChild() function installs a protocol on ChildHandle. If ChildHandle is a pointer to NULL, then a new handle is created and returned in ChildHandle. If ChildHandle is not a pointer to NULL, then the protocol installs on the existing ChildHandle. @@ -51,6 +52,7 @@ EFI_STATUS /** Destroys a child handle with a protocol installed on it. + The DestroyChild() function does the opposite of CreateChild(). It removes a protocol that was installed by CreateChild() from ChildHandle. If the removed protocol is the last protocol on ChildHandle, then ChildHandle is destroyed.