From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id CD0711A1E05 for ; Mon, 29 Aug 2016 16:31:53 -0700 (PDT) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP; 29 Aug 2016 16:31:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,253,1470726000"; d="scan'208";a="2535456" Received: from camoore1-mobl1.amr.corp.intel.com (HELO gpmudusu-MOBL5.amr.corp.intel.com) ([10.254.96.35]) by orsmga004.jf.intel.com with ESMTP; 29 Aug 2016 16:31:31 -0700 From: Giri P Mudusuru To: edk2-devel@lists.01.org Cc: Jiewen Yao , Maurice Ma , Satya Yarlagadda , Michael Kinney Date: Mon, 29 Aug 2016 16:31:15 -0700 Message-Id: <754dad52f55e425a008ddc793a9d42856bb6414a.1472513006.git.giri.p.mudusuru@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 In-Reply-To: References: Subject: [PATCHV2 2/2] IntelFsp2Pkg: Fix typo and comments X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2016 23:31:54 -0000 Cc: Jiewen Yao Cc: Maurice Ma Cc: Satya Yarlagadda Cc: Michael Kinney Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Giri P Mudusuru --- .../Library/BaseFspCommonLib/FspCommonLib.c | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c b/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c index 660e9fc..a9c8da6 100644 --- a/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c +++ b/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c @@ -58,7 +58,7 @@ typedef struct { /** This function sets the FSP global data pointer. - @param[in] FspData Fsp global data pointer. + @param[in] FspData FSP global data pointer. **/ VOID @@ -191,7 +191,7 @@ SetFspCoreStackPointer ( /** This function sets the platform specific data pointer. - @param[in] PlatformData Fsp platform specific data pointer. + @param[in] PlatformData FSP platform specific data pointer. **/ VOID @@ -210,7 +210,7 @@ SetFspPlatformDataPointer ( /** This function gets the platform specific data pointer. - @param[in] PlatformData Fsp platform specific data pointer. + @param[in] PlatformData FSP platform specific data pointer. **/ VOID * @@ -240,7 +240,7 @@ SetFspUpdDataPointer ( FSP_GLOBAL_DATA *FspData; // - // Get the Fsp Global Data Pointer + // Get the FSP Global Data Pointer // FspData = GetFspGlobalDataPointer (); @@ -269,9 +269,9 @@ GetFspUpdDataPointer ( /** - This function sets the memory init UPD data pointer. + This function sets the FspMemoryInit UPD data pointer. - @param[in] MemoryInitUpdPtr memory init UPD data pointer. + @param[in] MemoryInitUpdPtr FspMemoryInit UPD data pointer. **/ VOID EFIAPI @@ -282,20 +282,20 @@ SetFspMemoryInitUpdDataPointer ( FSP_GLOBAL_DATA *FspData; // - // Get the Fsp Global Data Pointer + // Get the FSP Global Data Pointer // FspData = GetFspGlobalDataPointer (); // - // Set the memory init UPD pointer. + // Set the FspMemoryInit UPD pointer. // FspData->MemoryInitUpdPtr = MemoryInitUpdPtr; } /** - This function gets the memory init UPD data pointer. + This function gets the FspMemoryInit UPD data pointer. - @return memory init UPD data pointer. + @return FspMemoryInit UPD data pointer. **/ VOID * EFIAPI @@ -311,9 +311,9 @@ GetFspMemoryInitUpdDataPointer ( /** - This function sets the silicon init UPD data pointer. + This function sets the FspSiliconInit UPD data pointer. - @param[in] SiliconInitUpdPtr silicon init UPD data pointer. + @param[in] SiliconInitUpdPtr FspSiliconInit UPD data pointer. **/ VOID EFIAPI @@ -324,20 +324,20 @@ SetFspSiliconInitUpdDataPointer ( FSP_GLOBAL_DATA *FspData; // - // Get the Fsp Global Data Pointer + // Get the FSP Global Data Pointer // FspData = GetFspGlobalDataPointer (); // - // Set the silicon init UPD data pointer. + // Set the FspSiliconInit UPD data pointer. // FspData->SiliconInitUpdPtr = SiliconInitUpdPtr; } /** - This function gets the silicon init UPD data pointer. + This function gets the FspSiliconInit UPD data pointer. - @return silicon init UPD data pointer. + @return FspSiliconInit UPD data pointer. **/ VOID * EFIAPI @@ -528,6 +528,6 @@ FspApiReturnStatusReset ( SetFspApiReturnStatus ((EFI_STATUS)FspResetType); Pei2LoaderSwitchStack (); DEBUG ((DEBUG_ERROR, "!!!ERROR: FSP has requested BootLoader for reset. But BootLoader has not honored the reset\n")); - DEBUG ((DEBUG_ERROR, "!!!ERROR: Please add support in BootLoader to honour the reset request from FSP\n")); + DEBUG ((DEBUG_ERROR, "!!!ERROR: Please add support in BootLoader to honor the reset request from FSP\n")); } while (LoopUntilReset); } -- 2.9.0.windows.1