Reviewed-by: jiewen....@intel.com

> -----Original Message-----
> From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of
> Gary Lin
> Sent: Wednesday, October 19, 2016 3:01 PM
> To: edk2-devel@lists.01.org
> Cc: Yao, Jiewen <jiewen....@intel.com>
> Subject: [edk2] [PATCH 13/33] IntelFspWrapperPkg: Fix typos in comments
> 
> - inforamtion -> information
> - tempory -> temporary
> - boundry -> boundary
> - immediatly -> immediately
> - permenent -> permanent
> 
> Cc: Jiewen Yao <jiewen....@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Gary Lin <g...@suse.com>
> ---
>  IntelFspWrapperPkg/FspInitPei/FindPeiCore.c
> | 2 +-
>  IntelFspWrapperPkg/FspInitPei/SecMain.c
> | 2 +-
>  IntelFspWrapperPkg/FspInitPei/SecMain.h
> | 4 ++--
>  IntelFspWrapperPkg/FspNotifyDxe/LoadBelow4G.c
> | 2 +-
>  IntelFspWrapperPkg/FspWrapperSecCore/FindPeiCore.c
> | 2 +-
>  IntelFspWrapperPkg/FspWrapperSecCore/SecMain.c
> | 2 +-
>  IntelFspWrapperPkg/FspWrapperSecCore/SecMain.h
> | 4 ++--
> 
> IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecTempRamS
> upport.c | 4 ++--
>  8 files changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/IntelFspWrapperPkg/FspInitPei/FindPeiCore.c
> b/IntelFspWrapperPkg/FspInitPei/FindPeiCore.c
> index ce003d0..068465a 100644
> --- a/IntelFspWrapperPkg/FspInitPei/FindPeiCore.c
> +++ b/IntelFspWrapperPkg/FspInitPei/FindPeiCore.c
> @@ -146,7 +146,7 @@ FindImageBase (
>  /**
>    Find and return Pei Core entry point.
> 
> -  It also find SEC and PEI Core file debug inforamtion. It will report them 
> if
> +  It also find SEC and PEI Core file debug information. It will report them 
> if
>    remote debug is enabled.
> 
>    @param[in]  BootFirmwareVolumePtr    Point to the boot firmware
> volume.
> diff --git a/IntelFspWrapperPkg/FspInitPei/SecMain.c
> b/IntelFspWrapperPkg/FspInitPei/SecMain.c
> index 4d0878a..e4f397a 100644
> --- a/IntelFspWrapperPkg/FspInitPei/SecMain.c
> +++ b/IntelFspWrapperPkg/FspInitPei/SecMain.c
> @@ -61,7 +61,7 @@ SecStartupPhase2(
>    the control is transferred to this function.
> 
>    @param[in] SizeOfRam           Size of the temporary memory
> available for use.
> -  @param[in] TempRamBase         Base address of tempory ram
> +  @param[in] TempRamBase         Base address of temporary ram
>    @param[in] BootFirmwareVolume  Base address of the Boot Firmware
> Volume.
>  **/
>  VOID
> diff --git a/IntelFspWrapperPkg/FspInitPei/SecMain.h
> b/IntelFspWrapperPkg/FspInitPei/SecMain.h
> index fc20397..66c53de 100644
> --- a/IntelFspWrapperPkg/FspInitPei/SecMain.h
> +++ b/IntelFspWrapperPkg/FspInitPei/SecMain.h
> @@ -54,7 +54,7 @@ typedef struct _SEC_IDT_TABLE {
>    the control is transferred to this function.
> 
>    @param[in] SizeOfRam           Size of the temporary memory
> available for use.
> -  @param[in] TempRamBase         Base address of tempory ram
> +  @param[in] TempRamBase         Base address of temporary ram
>    @param[in] BootFirmwareVolume  Base address of the Boot Firmware
> Volume.
>  **/
>  VOID
> @@ -68,7 +68,7 @@ SecStartup (
>  /**
>    Find and return Pei Core entry point.
> 
> -  It also find SEC and PEI Core file debug inforamtion. It will report them 
> if
> +  It also find SEC and PEI Core file debug information. It will report them 
> if
>    remote debug is enabled.
> 
>    @param[in]  BootFirmwareVolumePtr  Point to the boot firmware
> volume.
> diff --git a/IntelFspWrapperPkg/FspNotifyDxe/LoadBelow4G.c
> b/IntelFspWrapperPkg/FspNotifyDxe/LoadBelow4G.c
> index d39164e..6f06e24 100644
> --- a/IntelFspWrapperPkg/FspNotifyDxe/LoadBelow4G.c
> +++ b/IntelFspWrapperPkg/FspNotifyDxe/LoadBelow4G.c
> @@ -112,7 +112,7 @@ RelocateImageUnder4GIfNeeded (
>    ASSERT_EFI_ERROR (Status);
>    ImageContext.ImageAddress = (PHYSICAL_ADDRESS)(UINTN)FfsBuffer;
>    //
> -  // Align buffer on section boundry
> +  // Align buffer on section boundary
>    //
>    ImageContext.ImageAddress += ImageContext.SectionAlignment - 1;
>    ImageContext.ImageAddress &=
> ~((EFI_PHYSICAL_ADDRESS)(ImageContext.SectionAlignment - 1));
> diff --git a/IntelFspWrapperPkg/FspWrapperSecCore/FindPeiCore.c
> b/IntelFspWrapperPkg/FspWrapperSecCore/FindPeiCore.c
> index ce003d0..068465a 100644
> --- a/IntelFspWrapperPkg/FspWrapperSecCore/FindPeiCore.c
> +++ b/IntelFspWrapperPkg/FspWrapperSecCore/FindPeiCore.c
> @@ -146,7 +146,7 @@ FindImageBase (
>  /**
>    Find and return Pei Core entry point.
> 
> -  It also find SEC and PEI Core file debug inforamtion. It will report them 
> if
> +  It also find SEC and PEI Core file debug information. It will report them 
> if
>    remote debug is enabled.
> 
>    @param[in]  BootFirmwareVolumePtr    Point to the boot firmware
> volume.
> diff --git a/IntelFspWrapperPkg/FspWrapperSecCore/SecMain.c
> b/IntelFspWrapperPkg/FspWrapperSecCore/SecMain.c
> index f441725..fc271e2 100644
> --- a/IntelFspWrapperPkg/FspWrapperSecCore/SecMain.c
> +++ b/IntelFspWrapperPkg/FspWrapperSecCore/SecMain.c
> @@ -52,7 +52,7 @@ SecStartupPhase2(
>    the control is transferred to this function.
> 
>    @param[in] SizeOfRam           Size of the temporary memory
> available for use.
> -  @param[in] TempRamBase         Base address of tempory ram
> +  @param[in] TempRamBase         Base address of temporary ram
>    @param[in] BootFirmwareVolume  Base address of the Boot Firmware
> Volume.
>  **/
>  VOID
> diff --git a/IntelFspWrapperPkg/FspWrapperSecCore/SecMain.h
> b/IntelFspWrapperPkg/FspWrapperSecCore/SecMain.h
> index afaadfe..de82221 100644
> --- a/IntelFspWrapperPkg/FspWrapperSecCore/SecMain.h
> +++ b/IntelFspWrapperPkg/FspWrapperSecCore/SecMain.h
> @@ -53,7 +53,7 @@ typedef struct _SEC_IDT_TABLE {
>    the control is transferred to this function.
> 
>    @param[in] SizeOfRam           Size of the temporary memory
> available for use.
> -  @param[in] TempRamBase         Base address of tempory ram
> +  @param[in] TempRamBase         Base address of temporary ram
>    @param[in] BootFirmwareVolume  Base address of the Boot Firmware
> Volume.
>  **/
>  VOID
> @@ -67,7 +67,7 @@ SecStartup (
>  /**
>    Find and return Pei Core entry point.
> 
> -  It also find SEC and PEI Core file debug inforamtion. It will report them 
> if
> +  It also find SEC and PEI Core file debug information. It will report them 
> if
>    remote debug is enabled.
> 
>    @param[in]  BootFirmwareVolumePtr  Point to the boot firmware
> volume.
> diff --git
> a/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecTempRa
> mSupport.c
> b/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecTempRa
> mSupport.c
> index 7f7a6af..06b3ea6 100644
> ---
> a/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecTempRa
> mSupport.c
> +++
> b/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecTempRa
> mSupport.c
> @@ -139,8 +139,8 @@ SecTemporaryRamSupport (
> 
>    //
>    // SecSwitchStack function must be invoked after the memory migration
> -  // immediatly, also we need fixup the stack change caused by new call
> into
> -  // permenent memory.
> +  // immediately, also we need fixup the stack change caused by new call
> into
> +  // permanent memory.
>    //
>    SecSwitchStack (
>      (UINT32) (UINTN) OldStack,
> --
> 2.10.1
> 
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel

Reply via email to