From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.115; helo=mga14.intel.com; envelope-from=star.zeng@intel.com; receiver=edk2-devel@lists.01.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id C686C21F0DA7C for ; Wed, 7 Feb 2018 03:34:05 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Feb 2018 03:39:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,473,1511856000"; d="scan'208";a="28101103" Received: from shzintpr01.sh.intel.com (HELO [10.253.24.48]) ([10.239.4.80]) by fmsmga004.fm.intel.com with ESMTP; 07 Feb 2018 03:39:47 -0800 To: Ruiyu Ni , edk2-devel@lists.01.org Cc: Michael D Kinney , Liming Gao , star.zeng@intel.com References: <20180202064530.407028-1-ruiyu.ni@intel.com> <20180202064530.407028-4-ruiyu.ni@intel.com> From: "Zeng, Star" Message-ID: <927d8531-8fc3-656f-0650-8e18c72ca2c9@intel.com> Date: Wed, 7 Feb 2018 19:39:16 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: <20180202064530.407028-4-ruiyu.ni@intel.com> Subject: Re: [PATCH 03/10] MdeModulePkg/PeiMain: Cleanup whitespace in Reset.c X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Feb 2018 11:34:06 -0000 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit On 2018/2/2 14:45, Ruiyu Ni wrote: > From: Michael D Kinney > > Cc: Liming Gao > Reviewed-by: Ruiyu Ni > Cc: Star Zeng > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Michael D Kinney Reviewed-by: Star Zeng Thanks, Star > --- > MdeModulePkg/Core/Pei/Reset/Reset.c | 41 ++++++++++++++++++------------------- > 1 file changed, 20 insertions(+), 21 deletions(-) > > diff --git a/MdeModulePkg/Core/Pei/Reset/Reset.c b/MdeModulePkg/Core/Pei/Reset/Reset.c > index cd36c526b5..e6d7899ef7 100644 > --- a/MdeModulePkg/Core/Pei/Reset/Reset.c > +++ b/MdeModulePkg/Core/Pei/Reset/Reset.c > @@ -1,14 +1,14 @@ > /** @file > Pei Core Reset System Support > - > + > Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.
> -This program and the accompanying materials > -are licensed and made available under the terms and conditions of the BSD License > -which accompanies this distribution. The full text of the license may be found at > -http://opensource.org/licenses/bsd-license.php > - > -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, > -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. > +This program and the accompanying materials > +are licensed and made available under the terms and conditions of the BSD License > +which accompanies this distribution. The full text of the license may be found at > +http://opensource.org/licenses/bsd-license.php > + > +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, > +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. > > **/ > > @@ -29,11 +29,11 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. > EFI_STATUS > EFIAPI > PeiResetSystem ( > - IN CONST EFI_PEI_SERVICES **PeiServices > + IN CONST EFI_PEI_SERVICES **PeiServices > ) > { > - EFI_STATUS Status; > - EFI_PEI_RESET_PPI *ResetPpi; > + EFI_STATUS Status; > + EFI_PEI_RESET_PPI *ResetPpi; > > // > // Attempt to use newer ResetSystem2(). If this returns, then ResetSystem2() > @@ -52,9 +52,10 @@ PeiResetSystem ( > ); > if (!EFI_ERROR (Status)) { > return ResetPpi->ResetSystem (PeiServices); > - } > + } > + > // > - // Report Status Code that Reset PPI is not available > + // Report Status Code that Reset PPI is not available. > // > REPORT_STATUS_CODE ( > EFI_ERROR_CODE | EFI_ERROR_MINOR, > @@ -85,14 +86,14 @@ PeiResetSystem ( > VOID > EFIAPI > PeiResetSystem2 ( > - IN EFI_RESET_TYPE ResetType, > - IN EFI_STATUS ResetStatus, > - IN UINTN DataSize, > - IN VOID *ResetData OPTIONAL > + IN EFI_RESET_TYPE ResetType, > + IN EFI_STATUS ResetStatus, > + IN UINTN DataSize, > + IN VOID *ResetData OPTIONAL > ) > { > - EFI_STATUS Status; > - EFI_PEI_RESET2_PPI *Reset2Ppi; > + EFI_STATUS Status; > + EFI_PEI_RESET2_PPI *Reset2Ppi; > > // > // Look for PEI Reset System 2 PPI > @@ -103,7 +104,6 @@ PeiResetSystem2 ( > NULL, > (VOID **)&Reset2Ppi > ); > - > if (!EFI_ERROR (Status)) { > Reset2Ppi->ResetSystem (ResetType, ResetStatus, DataSize, ResetData); > return; > @@ -117,4 +117,3 @@ PeiResetSystem2 ( > (EFI_SOFTWARE_PEI_CORE | EFI_SW_PS_EC_RESET_NOT_AVAILABLE) > ); > } > - >