From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 96B471A1E4F for ; Wed, 19 Oct 2016 00:06:25 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga103.fm.intel.com with ESMTP; 19 Oct 2016 00:06:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,513,1473145200"; d="scan'208";a="21175752" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga005.fm.intel.com with ESMTP; 19 Oct 2016 00:06:21 -0700 Received: from fmsmsx154.amr.corp.intel.com (10.18.116.70) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 19 Oct 2016 00:06:21 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX154.amr.corp.intel.com (10.18.116.70) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 19 Oct 2016 00:06:20 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.206]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.209]) with mapi id 14.03.0248.002; Wed, 19 Oct 2016 15:06:19 +0800 From: "Yao, Jiewen" To: Gary Lin , "edk2-devel@lists.01.org" Thread-Topic: [edk2] [PATCH 12/33] IntelFspPkg: Fix typos in comments Thread-Index: AQHSKdbYRz1BbCvNWkmEqcLNKTWHJ6CvWtXQ Date: Wed, 19 Oct 2016 07:06:18 +0000 Message-ID: <74D8A39837DF1E4DA445A8C0B3885C50386B3C27@shsmsx102.ccr.corp.intel.com> References: <20161019070138.16424-1-glin@suse.com> <20161019070138.16424-13-glin@suse.com> In-Reply-To: <20161019070138.16424-13-glin@suse.com> Accept-Language: zh-CN, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH 12/33] IntelFspPkg: Fix typos in 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: Wed, 19 Oct 2016 07:06:25 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Jiewen.yao@intel.com > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@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 > Subject: [edk2] [PATCH 12/33] IntelFspPkg: Fix typos in comments >=20 > - tempory -> temporary > - immediatly -> immediately > - permenent -> permanent > - paramter -> parameter > - funciton -> function >=20 > Cc: Jiewen Yao > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Gary Lin > --- > IntelFspPkg/FspSecCore/SecMain.c | 6 +++--- > IntelFspPkg/FspSecCore/SecMain.h | 2 +- > IntelFspPkg/Include/Library/FspCommonLib.h | 6 +++--- > IntelFspPkg/Include/Library/FspSwitchStackLib.h | 2 +- > IntelFspPkg/Library/BaseFspCommonLib/FspCommonLib.c | 6 +++--- > 5 files changed, 11 insertions(+), 11 deletions(-) >=20 > diff --git a/IntelFspPkg/FspSecCore/SecMain.c > b/IntelFspPkg/FspSecCore/SecMain.c > index 99acefa..e1d9cb2 100644 > --- a/IntelFspPkg/FspSecCore/SecMain.c > +++ b/IntelFspPkg/FspSecCore/SecMain.c > @@ -39,7 +39,7 @@ UINT64 mIdtEntryTemplate =3D > 0xffff8e000008ffe4ULL; >=20 >=20 > @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. > @param[in] PeiCore PeiCore entry point. > @param[in] BootLoaderStack BootLoader stack. > @@ -200,8 +200,8 @@ SecTemporaryRamSupport ( >=20 > // > // 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, > diff --git a/IntelFspPkg/FspSecCore/SecMain.h > b/IntelFspPkg/FspSecCore/SecMain.h > index 1fd2f2b..3888635 100644 > --- a/IntelFspPkg/FspSecCore/SecMain.h > +++ b/IntelFspPkg/FspSecCore/SecMain.h > @@ -105,7 +105,7 @@ InitializeFloatingPointUnits ( >=20 >=20 > @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. > @param[in] PeiCore PeiCore entry point. > @param[in] BootLoaderStack BootLoader stack. > diff --git a/IntelFspPkg/Include/Library/FspCommonLib.h > b/IntelFspPkg/Include/Library/FspCommonLib.h > index fa2f81c..5e6846f 100644 > --- a/IntelFspPkg/Include/Library/FspCommonLib.h > +++ b/IntelFspPkg/Include/Library/FspCommonLib.h > @@ -40,9 +40,9 @@ GetFspGlobalDataPointer ( > ); >=20 > /** > - This function gets back the FSP API paramter passed by the bootlaoder. > + This function gets back the FSP API parameter passed by the bootlaoder= . >=20 > - @retval ApiParameter FSP API paramter passed by the bootlaoder. > + @retval ApiParameter FSP API parameter passed by the bootlaoder. > **/ > UINT32 > EFIAPI > @@ -51,7 +51,7 @@ GetFspApiParameter ( > ); >=20 > /** > - This function sets the FSP API paramter in the stack. > + This function sets the FSP API parameter in the stack. >=20 > @param[in] Value New parameter value. >=20 > diff --git a/IntelFspPkg/Include/Library/FspSwitchStackLib.h > b/IntelFspPkg/Include/Library/FspSwitchStackLib.h > index e90b13e..fee44a3 100644 > --- a/IntelFspPkg/Include/Library/FspSwitchStackLib.h > +++ b/IntelFspPkg/Include/Library/FspSwitchStackLib.h > @@ -16,7 +16,7 @@ >=20 > /** >=20 > - This funciton will switch the current stack to the previous saved stac= k. > + This function will switch the current stack to the previous saved stac= k. > Before calling the previous stack has to be set in > FSP_GLOBAL_DATA.CoreStack. > EIP > FLAGS 16 bit FLAGS 16 bit > diff --git a/IntelFspPkg/Library/BaseFspCommonLib/FspCommonLib.c > b/IntelFspPkg/Library/BaseFspCommonLib/FspCommonLib.c > index a31d16b..f6a4252 100644 > --- a/IntelFspPkg/Library/BaseFspCommonLib/FspCommonLib.c > +++ b/IntelFspPkg/Library/BaseFspCommonLib/FspCommonLib.c > @@ -89,9 +89,9 @@ GetFspGlobalDataPointer ( > } >=20 > /** > - This function gets back the FSP API paramter passed by the bootlaoder. > + This function gets back the FSP API parameter passed by the bootlaoder= . >=20 > - @retval ApiParameter FSP API paramter passed by the bootlaoder. > + @retval ApiParameter FSP API parameter passed by the bootlaoder. > **/ > UINT32 > EFIAPI > @@ -106,7 +106,7 @@ GetFspApiParameter ( > } >=20 > /** > - This function sets the FSP API paramter in the stack. > + This function sets the FSP API parameter in the stack. >=20 > @param[in] Value New parameter value. >=20 > -- > 2.10.1 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel