From b3548d32ddb553a9e95503457c66d11462622d16 Mon Sep 17 00:00:00 2001 From: Liming Gao Date: Wed, 27 Jun 2018 21:13:09 +0800 Subject: SecurityPkg: Clean up source files 1. Do not use tab characters 2. No trailing white space in one line 3. All files must end with CRLF Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao --- .../Tpm12DeviceLibDTpm/Tpm12DeviceLibDTpm.inf | 10 +++--- SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12Tis.c | 38 +++++++++++----------- 2 files changed, 24 insertions(+), 24 deletions(-) (limited to 'SecurityPkg/Library/Tpm12DeviceLibDTpm') diff --git a/SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12DeviceLibDTpm.inf b/SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12DeviceLibDTpm.inf index 30b399499e..949493cae8 100644 --- a/SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12DeviceLibDTpm.inf +++ b/SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12DeviceLibDTpm.inf @@ -1,11 +1,11 @@ ## @file # Provides TPM 1.2 TIS functions -# -# This library implements TIS (TPM Interface Specification) functions which is -# used for every TPM 1.2 command. Choosing this library means platform uses and +# +# This library implements TIS (TPM Interface Specification) functions which is +# used for every TPM 1.2 command. Choosing this library means platform uses and # only uses TPM 1.2 device. # -# Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.
+# Copyright (c) 2013 - 2018, 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 @@ -45,4 +45,4 @@ DebugLib [Pcd] - gEfiSecurityPkgTokenSpaceGuid.PcdTpmBaseAddress ## CONSUMES \ No newline at end of file + gEfiSecurityPkgTokenSpaceGuid.PcdTpmBaseAddress ## CONSUMES diff --git a/SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12Tis.c b/SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12Tis.c index c392b4b215..72802f44cc 100644 --- a/SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12Tis.c +++ b/SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12Tis.c @@ -1,14 +1,14 @@ /** @file TIS (TPM Interface Specification) functions used by TPM1.2. - -Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.
+ +Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.
(C) Copyright 2015 Hewlett Packard Enterprise Development LP
-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 +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, +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ @@ -52,7 +52,7 @@ Tpm12TisPcPresenceCheck ( ) { UINT8 RegRead; - + RegRead = MmioRead8 ((UINTN)&TisReg->Access); return (BOOLEAN)(RegRead != (UINT8)-1); } @@ -127,7 +127,7 @@ Tpm12TisPcWaitRegisterBits ( } /** - Get BurstCount by reading the burstCount field of a TIS regiger + Get BurstCount by reading the burstCount field of a TIS regiger in the time of default TIS_TIMEOUT_D. @param[in] TisReg Pointer to TIS register. @@ -171,7 +171,7 @@ Tpm12TisPcReadBurstCount ( } /** - Set TPM chip to ready state by sending ready command TIS_PC_STS_READY + Set TPM chip to ready state by sending ready command TIS_PC_STS_READY to Status Register in time. @param[in] TisReg Pointer to TIS register. @@ -202,7 +202,7 @@ Tpm12TisPcPrepareCommand ( } /** - Get the control of TPM chip by sending requestUse command TIS_PC_ACC_RQUUSE + Get the control of TPM chip by sending requestUse command TIS_PC_ACC_RQUUSE to ACCESS Register in the time of default TIS_TIMEOUT_A. @param[in] TisReg Pointer to TIS register. @@ -218,11 +218,11 @@ Tpm12TisPcRequestUseTpm ( ) { EFI_STATUS Status; - + if (TisReg == NULL) { return EFI_INVALID_PARAMETER; } - + if (!Tpm12TisPcPresenceCheck (TisReg)) { return EFI_NOT_FOUND; } @@ -240,12 +240,12 @@ Tpm12TisPcRequestUseTpm ( /** Send a command to TPM for execution and return response data. - @param[in] TisReg TPM register space base address. - @param[in] BufferIn Buffer for command data. - @param[in] SizeIn Size of command data. - @param[in, out] BufferOut Buffer for response data. - @param[in, out] SizeOut Size of response data. - + @param[in] TisReg TPM register space base address. + @param[in] BufferIn Buffer for command data. + @param[in] SizeIn Size of command data. + @param[in, out] BufferOut Buffer for response data. + @param[in, out] SizeOut Size of response data. + @retval EFI_SUCCESS Operation completed successfully. @retval EFI_BUFFER_TOO_SMALL Response data buffer is too small. @retval EFI_DEVICE_ERROR Unexpected device behavior. @@ -422,7 +422,7 @@ Exit: @retval EFI_SUCCESS The command byte stream was successfully sent to the device and a response was successfully received. @retval EFI_DEVICE_ERROR The command was not successfully sent to the device or a response was not successfully received from the device. - @retval EFI_BUFFER_TOO_SMALL The output parameter block is too small. + @retval EFI_BUFFER_TOO_SMALL The output parameter block is too small. **/ EFI_STATUS EFIAPI -- cgit v1.2.3