From 9095d37b8fe5bfc3d02adad6ba7fd7359ebc0107 Mon Sep 17 00:00:00 2001 From: Liming Gao Date: Wed, 27 Jun 2018 21:11:33 +0800 Subject: MdePkg: 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 --- .../DxeRuntimePciExpressLib.inf | 10 +++--- .../DxeRuntimePciExpressLib.uni | 4 +-- .../DxeRuntimePciExpressLib/PciExpressLib.c | 40 +++++++++++----------- 3 files changed, 27 insertions(+), 27 deletions(-) (limited to 'MdePkg/Library/DxeRuntimePciExpressLib') diff --git a/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.inf b/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.inf index 5d7357035b..622872188c 100644 --- a/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.inf +++ b/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.inf @@ -1,13 +1,13 @@ ## @file -# Instance of PCI Express Library using the 256 MB PCI Express MMIO window that +# Instance of PCI Express Library using the 256 MB PCI Express MMIO window that # is safe for runtime use. # # PCI Express Library that uses the 256 MB PCI Express MMIO window to perform -# PCI Configuration cycles. Layers on top of an I/O Library instance. A table of -# PCI devices that are registered for for runtime access is maintained so the +# PCI Configuration cycles. Layers on top of an I/O Library instance. A table of +# PCI devices that are registered for for runtime access is maintained so the # proper virtual address is used to perform the PCI Express Configuration cycle. # -# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.
+# Copyright (c) 2007 - 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 @@ -26,7 +26,7 @@ FILE_GUID = 54DCBCE5-92AD-41f5-AAAF-1170F16DA6A8 MODULE_TYPE = DXE_RUNTIME_DRIVER VERSION_STRING = 1.0 - LIBRARY_CLASS = PciExpressLib|DXE_RUNTIME_DRIVER + LIBRARY_CLASS = PciExpressLib|DXE_RUNTIME_DRIVER CONSTRUCTOR = DxeRuntimePciExpressLibConstructor DESTRUCTOR = DxeRuntimePciExpressLibDestructor diff --git a/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.uni b/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.uni index 83c086f735..099b12f3bd 100644 --- a/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.uni +++ b/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.uni @@ -2,13 +2,13 @@ // Instance of PCI Express Library using the 256 MB PCI Express MMIO window that // // is safe for runtime use. -// +// // PCI Express Library that uses the 256 MB PCI Express MMIO window to perform // PCI Configuration cycles. Layers on top of an I/O Library instance. A table of // PCI devices that are registered for for runtime access is maintained so the // proper virtual address is used to perform the PCI Express Configuration cycle. // -// Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.
+// Copyright (c) 2007 - 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 diff --git a/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c b/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c index 01bd96166e..39fa4f1749 100644 --- a/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c +++ b/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c @@ -5,7 +5,7 @@ All assertions for I/O operations are handled in MMIO functions in the IoLib Library. - Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.
+ Copyright (c) 2006 - 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 @@ -103,12 +103,12 @@ DxeRuntimePciExpressLibVirtualNotify ( } /** - The constructor function caches the PCI Express Base Address and creates a + The constructor function caches the PCI Express Base Address and creates a Set Virtual Address Map event to convert physical address to virtual addresses. - + @param ImageHandle The firmware allocated handle for the EFI image. @param SystemTable A pointer to the EFI System Table. - + @retval EFI_SUCCESS The constructor completed successfully. @retval Other value The constructor did not complete successfully. @@ -144,12 +144,12 @@ DxeRuntimePciExpressLibConstructor ( } /** - The destructor function frees any allocated buffers and closes the Set Virtual + The destructor function frees any allocated buffers and closes the Set Virtual Address Map event. - + @param ImageHandle The firmware allocated handle for the EFI image. @param SystemTable A pointer to the EFI System Table. - + @retval EFI_SUCCESS The destructor completed successfully. @retval Other value The destructor did not complete successfully. @@ -164,7 +164,7 @@ DxeRuntimePciExpressLibDestructor ( EFI_STATUS Status; // - // If one or more PCI devices have been registered for runtime access, then + // If one or more PCI devices have been registered for runtime access, then // free the registration table. // if (mDxeRuntimePciExpressLibRegistrationTable != NULL) { @@ -182,10 +182,10 @@ DxeRuntimePciExpressLibDestructor ( /** Gets the base address of PCI Express. - + This internal functions retrieves PCI Express Base Address via a PCD entry PcdPciExpressBaseAddress. - + @param Address The address that encodes the PCI Bus, Device, Function and Register. @return The base address of PCI Express. @@ -247,26 +247,26 @@ GetPciExpressAddress ( CpuBreakpoint(); // - // Return the physical address + // Return the physical address // return Address; } /** - Registers a PCI device so PCI configuration registers may be accessed after + Registers a PCI device so PCI configuration registers may be accessed after SetVirtualAddressMap(). - - Registers the PCI device specified by Address so all the PCI configuration - registers associated with that PCI device may be accessed after SetVirtualAddressMap() + + Registers the PCI device specified by Address so all the PCI configuration + registers associated with that PCI device may be accessed after SetVirtualAddressMap() is called. - + If Address > 0x0FFFFFFF, then ASSERT(). @param Address The address that encodes the PCI Bus, Device, Function and Register. - + @retval RETURN_SUCCESS The PCI device was registered for runtime access. - @retval RETURN_UNSUPPORTED An attempt was made to call this function + @retval RETURN_UNSUPPORTED An attempt was made to call this function after ExitBootServices(). @retval RETURN_UNSUPPORTED The resources required to access the PCI device at runtime could not be mapped. @@ -334,8 +334,8 @@ PciExpressRegisterForRuntimeAccess ( // Grow the size of the registration table // NewTable = ReallocateRuntimePool ( - (mDxeRuntimePciExpressLibNumberOfRuntimeRanges + 0) * sizeof (PCI_EXPRESS_RUNTIME_REGISTRATION_TABLE), - (mDxeRuntimePciExpressLibNumberOfRuntimeRanges + 1) * sizeof (PCI_EXPRESS_RUNTIME_REGISTRATION_TABLE), + (mDxeRuntimePciExpressLibNumberOfRuntimeRanges + 0) * sizeof (PCI_EXPRESS_RUNTIME_REGISTRATION_TABLE), + (mDxeRuntimePciExpressLibNumberOfRuntimeRanges + 1) * sizeof (PCI_EXPRESS_RUNTIME_REGISTRATION_TABLE), mDxeRuntimePciExpressLibRegistrationTable ); if (NewTable == NULL) { -- cgit v1.2.3