From 74e00be5c0cace9a6556f4bc9b5db70efb1d869e Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Tue, 28 Jun 2016 13:47:52 +0200 Subject: 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 Cc: Kelly Steele Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek Reviewed-by: Giri P Mudusuru Reviewed-by: Michael Kinney --- QuarkPlatformPkg/Library/PlatformHelperLib/PlatformHelperDxe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'QuarkPlatformPkg/Library/PlatformHelperLib/PlatformHelperDxe.c') diff --git a/QuarkPlatformPkg/Library/PlatformHelperLib/PlatformHelperDxe.c b/QuarkPlatformPkg/Library/PlatformHelperLib/PlatformHelperDxe.c index 441f7609a5..39185bc0d5 100644 --- a/QuarkPlatformPkg/Library/PlatformHelperLib/PlatformHelperDxe.c +++ b/QuarkPlatformPkg/Library/PlatformHelperLib/PlatformHelperDxe.c @@ -174,7 +174,7 @@ PlatformFlashLockConfig ( // SpiProtocol = LocateSpiProtocol (NULL); // This routine will not be called in SMM. - ASSERT_EFI_ERROR (SpiProtocol != NULL); + ASSERT (SpiProtocol != NULL); if (SpiProtocol != NULL) { Status = SpiProtocol->Lock (SpiProtocol); -- cgit v1.2.3