Clean up DxeMemoryAllocationLib and PeiMemoryAllocationLib.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5722 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4
2008-08-24 05:00:30 +00:00
parent 822a6944bc
commit 9e6fa6d245
5 changed files with 21 additions and 20 deletions

View File

@@ -34,7 +34,8 @@ STATIC VOID *mHobList = NULL;
@param ImageHandle The firmware allocated handle for the EFI image.
@param SystemTable A pointer to the EFI System Table.
@retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
@retval EFI_SUCCESS The constructor successfully gets HobList.
@retval Other value The constructor can't get HobList.
**/
EFI_STATUS
@@ -50,7 +51,7 @@ HobLibConstructor (
ASSERT_EFI_ERROR (Status);
ASSERT (mHobList != NULL);
return EFI_SUCCESS;
return Status;
}
/**