MdeModulePkg/PeiMain: Cleanup whitespace in Reset.c

Cc: Liming Gao <liming.gao@intel.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
Michael D Kinney 2017-09-01 00:32:22 -07:00 committed by Ruiyu Ni
parent 7072a185d0
commit 8f86d67d46

View File

@ -1,14 +1,14 @@
/** @file /** @file
Pei Core Reset System Support Pei Core Reset System Support
Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 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 EFI_STATUS
EFIAPI EFIAPI
PeiResetSystem ( PeiResetSystem (
IN CONST EFI_PEI_SERVICES **PeiServices IN CONST EFI_PEI_SERVICES **PeiServices
) )
{ {
EFI_STATUS Status; EFI_STATUS Status;
EFI_PEI_RESET_PPI *ResetPpi; EFI_PEI_RESET_PPI *ResetPpi;
// //
// Attempt to use newer ResetSystem2(). If this returns, then ResetSystem2() // Attempt to use newer ResetSystem2(). If this returns, then ResetSystem2()
@ -52,9 +52,10 @@ PeiResetSystem (
); );
if (!EFI_ERROR (Status)) { if (!EFI_ERROR (Status)) {
return ResetPpi->ResetSystem (PeiServices); 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 ( REPORT_STATUS_CODE (
EFI_ERROR_CODE | EFI_ERROR_MINOR, EFI_ERROR_CODE | EFI_ERROR_MINOR,
@ -85,14 +86,14 @@ PeiResetSystem (
VOID VOID
EFIAPI EFIAPI
PeiResetSystem2 ( PeiResetSystem2 (
IN EFI_RESET_TYPE ResetType, IN EFI_RESET_TYPE ResetType,
IN EFI_STATUS ResetStatus, IN EFI_STATUS ResetStatus,
IN UINTN DataSize, IN UINTN DataSize,
IN VOID *ResetData OPTIONAL IN VOID *ResetData OPTIONAL
) )
{ {
EFI_STATUS Status; EFI_STATUS Status;
EFI_PEI_RESET2_PPI *Reset2Ppi; EFI_PEI_RESET2_PPI *Reset2Ppi;
// //
// Look for PEI Reset System 2 PPI // Look for PEI Reset System 2 PPI
@ -103,7 +104,6 @@ PeiResetSystem2 (
NULL, NULL,
(VOID **)&Reset2Ppi (VOID **)&Reset2Ppi
); );
if (!EFI_ERROR (Status)) { if (!EFI_ERROR (Status)) {
Reset2Ppi->ResetSystem (ResetType, ResetStatus, DataSize, ResetData); Reset2Ppi->ResetSystem (ResetType, ResetStatus, DataSize, ResetData);
return; return;
@ -117,4 +117,3 @@ PeiResetSystem2 (
(EFI_SOFTWARE_PEI_CORE | EFI_SW_PS_EC_RESET_NOT_AVAILABLE) (EFI_SOFTWARE_PEI_CORE | EFI_SW_PS_EC_RESET_NOT_AVAILABLE)
); );
} }