MdePkg: Remove "assert" from SmmCpuRendevousLibNull.c

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3931

Some drivers will break down when they use
SmmWaitForAllProcessor() which from SmmCpuRendezvousLibNull.c.
Removing the code "ASSERT(False)" will make consumer
work normally if they keep default setting for sync mode.

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>

Signed-off-by: Zhihao Li <zhihao.li@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
Zhihao Li 2022-05-18 20:01:51 +08:00 committed by mergify[bot]
parent f0b97e165e
commit b09ada6edc
1 changed files with 0 additions and 1 deletions

View File

@ -24,6 +24,5 @@ SmmWaitForAllProcessor (
IN BOOLEAN BlockingMode
)
{
ASSERT (FALSE);
return EFI_SUCCESS;
}