From 1b641bb8eedacb9ad0b4a89d4b275db9488553f1 Mon Sep 17 00:00:00 2001 From: qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> Date: Fri, 17 Oct 2008 08:44:25 +0000 Subject: Base on PI spec, GetPeiServicesTablePointer is updated to return CONST EFI_PEI_SERVICES**. This is a incompatible changes. All file that reference this must be updated. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6129 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c') diff --git a/IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c b/IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c index 44f733e7b3..f67adf9d3a 100644 --- a/IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c +++ b/IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c @@ -1,7 +1,7 @@ /** @file Report Status Code Library for PEI Phase. - Copyright (c) 2006, Intel Corporation<BR> + Copyright (c) 2006 - 2008, Intel Corporation<BR> 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 @@ -68,7 +68,7 @@ InternalReportStatusCode ( CONST EFI_PEI_SERVICES **PeiServices; EFI_STATUS Status; - PeiServices = (CONST EFI_PEI_SERVICES **) GetPeiServicesTablePointer (); + PeiServices = GetPeiServicesTablePointer (); Status = (*PeiServices)->ReportStatusCode ( PeiServices, Type, -- cgit v1.2.3