Add missing status code in several modules.
Signed-off-by: Li Elvin <elvin.li@intel.com> Reviewed-by: Yao Jiewen <jiewen.yao@intel.com> Reviewed-by: Ni Ruiyu <ruiyu.ni@intel.com> Reviewed-by: Gao Liming <liming.gao@intel.com> Reviewed-by: Tian Feng <feng.tian@intel.com> Reviewed-by: Fan Jeff <jeff.fan@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13890 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -448,7 +448,17 @@ DxeMain (
|
||||
//
|
||||
// Assert if the Architectural Protocols are not present.
|
||||
//
|
||||
ASSERT_EFI_ERROR (CoreAllEfiServicesAvailable ());
|
||||
Status = CoreAllEfiServicesAvailable ();
|
||||
if (EFI_ERROR(Status)) {
|
||||
//
|
||||
// Report Status code that some Architectural Protocols are not present.
|
||||
//
|
||||
REPORT_STATUS_CODE (
|
||||
EFI_ERROR_CODE | EFI_ERROR_MAJOR,
|
||||
(EFI_SOFTWARE_DXE_CORE | EFI_SW_DXE_CORE_EC_NO_ARCH)
|
||||
);
|
||||
}
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
//
|
||||
// Report Status code before transfer control to BDS
|
||||
|
Reference in New Issue
Block a user