From: Giri P Mudusuru Date: Mon, 29 Aug 2016 23:31:15 +0000 (+0800) Subject: IntelFsp2Pkg: Fix typo and comments X-Git-Tag: edk2-stable201903~5923 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=86079a4d2198b62b88140b9decb92ca73d443f94 IntelFsp2Pkg: Fix typo and comments 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 Reviewed-by: Jiewen Yao --- diff --git a/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c b/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c index 660e9fc696..a9c8da657d 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); }