QuarkPlatformPkg: fix ASSERT_EFI_ERROR() typos
A number of code locations use ASSERT_EFI_ERROR (BooleanExpression) instead of ASSERT (BooleanExpression) Fix them. Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Kelly Steele <kelly.steele@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com> Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>
This commit is contained in:
@@ -1034,7 +1034,7 @@ InstallS3Memory (
|
||||
// memory above 1MB. So Memory Callback can set cache for the system memory
|
||||
// correctly on S3 boot path, just like it does on Normal boot path.
|
||||
//
|
||||
ASSERT_EFI_ERROR ((S3MemoryRangeData->SystemMemoryLength - 0x100000) > 0);
|
||||
ASSERT ((S3MemoryRangeData->SystemMemoryLength - 0x100000) > 0);
|
||||
BuildResourceDescriptorHob (
|
||||
EFI_RESOURCE_SYSTEM_MEMORY,
|
||||
(
|
||||
|
Reference in New Issue
Block a user