From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 7DBB41A1E4F for ; Wed, 19 Oct 2016 00:06:52 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 19 Oct 2016 00:06:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,513,1473145200"; d="scan'208";a="1055952537" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga001.fm.intel.com with ESMTP; 19 Oct 2016 00:06:51 -0700 Received: from FMSMSX110.amr.corp.intel.com (10.18.116.10) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 19 Oct 2016 00:06:51 -0700 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by fmsmsx110.amr.corp.intel.com (10.18.116.10) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 19 Oct 2016 00:06:51 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.206]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.2]) with mapi id 14.03.0248.002; Wed, 19 Oct 2016 15:06:49 +0800 From: "Yao, Jiewen" To: Gary Lin , "edk2-devel@lists.01.org" Thread-Topic: [PATCH 14/33] IntelFsp2Pkg: Fix typos in comments Thread-Index: AQHSKdbY5uzdSC2PaE+jZS+Un6/TBaCvWuow Date: Wed, 19 Oct 2016 07:06:48 +0000 Message-ID: <74D8A39837DF1E4DA445A8C0B3885C50386B3C37@shsmsx102.ccr.corp.intel.com> References: <20161019070138.16424-1-glin@suse.com> <20161019070138.16424-15-glin@suse.com> In-Reply-To: <20161019070138.16424-15-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 14/33] IntelFsp2Pkg: 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:52 -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: Gary Lin [mailto:glin@suse.com] > Sent: Wednesday, October 19, 2016 3:01 PM > To: edk2-devel@lists.01.org > Cc: Yao, Jiewen ; Mudusuru, Giri P > > Subject: [PATCH 14/33] IntelFsp2Pkg: Fix typos in comments >=20 > - tempory -> temporary > - immediatly -> immediately > - permenent -> permanent > - funciton -> function >=20 > Cc: Jiewen Yao > Cc: Giri P Mudusuru > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Gary Lin > --- > IntelFsp2Pkg/FspSecCore/SecMain.c | 6 +++--- > IntelFsp2Pkg/FspSecCore/SecMain.h | 2 +- > IntelFsp2Pkg/Include/Library/FspSwitchStackLib.h | 2 +- > 3 files changed, 5 insertions(+), 5 deletions(-) >=20 > diff --git a/IntelFsp2Pkg/FspSecCore/SecMain.c > b/IntelFsp2Pkg/FspSecCore/SecMain.c > index fa556bf..0432dee 100644 > --- a/IntelFsp2Pkg/FspSecCore/SecMain.c > +++ b/IntelFsp2Pkg/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. > @@ -215,8 +215,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/IntelFsp2Pkg/FspSecCore/SecMain.h > b/IntelFsp2Pkg/FspSecCore/SecMain.h > index 33f7362..291bc5c 100644 > --- a/IntelFsp2Pkg/FspSecCore/SecMain.h > +++ b/IntelFsp2Pkg/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/IntelFsp2Pkg/Include/Library/FspSwitchStackLib.h > b/IntelFsp2Pkg/Include/Library/FspSwitchStackLib.h > index e90b13e..fee44a3 100644 > --- a/IntelFsp2Pkg/Include/Library/FspSwitchStackLib.h > +++ b/IntelFsp2Pkg/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 > -- > 2.10.1