summaryrefslogtreecommitdiffstats
path: root/QuarkPlatformPkg/Library
diff options
context:
space:
mode:
authorLaszlo Ersek <lersek@redhat.com>2016-06-28 13:47:52 +0200
committerLaszlo Ersek <lersek@redhat.com>2016-06-30 13:08:14 +0200
commit74e00be5c0cace9a6556f4bc9b5db70efb1d869e (patch)
treec81cea053a281840beb36a8057222809635d4b7c /QuarkPlatformPkg/Library
parentbb7a152c2cea9dcdc533507c22a8c20dcb85c123 (diff)
downloadedk2-74e00be5c0cace9a6556f4bc9b5db70efb1d869e.tar.gz
edk2-74e00be5c0cace9a6556f4bc9b5db70efb1d869e.tar.bz2
edk2-74e00be5c0cace9a6556f4bc9b5db70efb1d869e.zip
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>
Diffstat (limited to 'QuarkPlatformPkg/Library')
-rw-r--r--QuarkPlatformPkg/Library/PlatformHelperLib/PlatformHelperDxe.c2
1 files changed, 1 insertions, 1 deletions
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);