MdePkg/IntelFrameworkPkg HobLib: Update BuildResourceDescriptorWithOwnerHob()

to align the behavior of BuildResourceDescriptorHob().

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16279 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Star Zeng 2014-10-31 07:20:26 +00:00 committed by lzeng14
parent 3f103c08ba
commit a75cf433d1
2 changed files with 10 additions and 8 deletions

View File

@ -331,10 +331,11 @@ BuildResourceDescriptorWithOwnerHob (
)
{
EFI_HOB_RESOURCE_DESCRIPTOR *Hob;
EFI_STATUS Status;
Status = PeiServicesCreateHob (EFI_HOB_TYPE_RESOURCE_DESCRIPTOR, sizeof (EFI_HOB_RESOURCE_DESCRIPTOR), (void **)&Hob);
ASSERT_EFI_ERROR (Status);
Hob = InternalPeiCreateHob (EFI_HOB_TYPE_RESOURCE_DESCRIPTOR, (UINT16) sizeof (EFI_HOB_RESOURCE_DESCRIPTOR));
if (Hob == NULL) {
return;
}
Hob->ResourceType = ResourceType;
Hob->ResourceAttribute = ResourceAttribute;

View File

@ -327,10 +327,11 @@ BuildResourceDescriptorWithOwnerHob (
)
{
EFI_HOB_RESOURCE_DESCRIPTOR *Hob;
EFI_STATUS Status;
Status = PeiServicesCreateHob (EFI_HOB_TYPE_RESOURCE_DESCRIPTOR, sizeof (EFI_HOB_RESOURCE_DESCRIPTOR), (void **)&Hob);
ASSERT_EFI_ERROR (Status);
Hob = InternalPeiCreateHob (EFI_HOB_TYPE_RESOURCE_DESCRIPTOR, (UINT16) sizeof (EFI_HOB_RESOURCE_DESCRIPTOR));
if (Hob == NULL) {
return;
}
Hob->ResourceType = ResourceType;
Hob->ResourceAttribute = ResourceAttribute;