From 419db80bef66edff583a0a5f406e801d70f11344 Mon Sep 17 00:00:00 2001 From: Bob C Feng Date: Mon, 18 Nov 2013 07:45:49 +0000 Subject: MdePkg and MdeModulePkg Pcd: Implement PCD Driver for External PCD Database and SKU enable Feature. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Bob C Feng Reviewed-by: Liming Gao Reviewed-by: Star Zeng git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14857 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Library/PeiPcdLib/PeiPcdLib.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'MdePkg/Library/PeiPcdLib') diff --git a/MdePkg/Library/PeiPcdLib/PeiPcdLib.c b/MdePkg/Library/PeiPcdLib/PeiPcdLib.c index 4d91799025..0a7efdb44e 100644 --- a/MdePkg/Library/PeiPcdLib/PeiPcdLib.c +++ b/MdePkg/Library/PeiPcdLib/PeiPcdLib.c @@ -1,7 +1,7 @@ /** @file Implementation of PcdLib class library for PEI phase. -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -962,11 +962,7 @@ LibPcdGetNextToken ( IN UINTN TokenNumber ) { - EFI_STATUS Status; - - Status = (GetPiPcdPpiPointer ())->GetNextToken (Guid, &TokenNumber); - - ASSERT_EFI_ERROR (Status); + (GetPiPcdPpiPointer ())->GetNextToken (Guid, &TokenNumber); return TokenNumber; } @@ -991,11 +987,7 @@ LibPcdGetNextTokenSpace ( IN CONST GUID *TokenSpaceGuid ) { - EFI_STATUS Status; - - Status = (GetPiPcdPpiPointer ())->GetNextTokenSpace (&TokenSpaceGuid); - - ASSERT_EFI_ERROR (Status); + (GetPiPcdPpiPointer ())->GetNextTokenSpace (&TokenSpaceGuid); return (GUID *) TokenSpaceGuid; } -- cgit v1.2.3