summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Protocol/PciPlatform.h
diff options
context:
space:
mode:
authorMichael Kubacki <michael.kubacki@microsoft.com>2021-12-05 14:54:05 -0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-12-07 17:24:28 +0000
commit2f88bd3a1296c522317f1c21377876de63de5be7 (patch)
treeba47875489cc5698061275a495983e9dea3be098 /MdePkg/Include/Protocol/PciPlatform.h
parent1436aea4d5707e672672a11bda72be2c63c936c3 (diff)
downloadedk2-2f88bd3a1296c522317f1c21377876de63de5be7.tar.gz
edk2-2f88bd3a1296c522317f1c21377876de63de5be7.tar.bz2
edk2-2f88bd3a1296c522317f1c21377876de63de5be7.zip
MdePkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the MdePkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'MdePkg/Include/Protocol/PciPlatform.h')
-rw-r--r--MdePkg/Include/Protocol/PciPlatform.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/MdePkg/Include/Protocol/PciPlatform.h b/MdePkg/Include/Protocol/PciPlatform.h
index 4b0cf07391..355f4ba83d 100644
--- a/MdePkg/Include/Protocol/PciPlatform.h
+++ b/MdePkg/Include/Protocol/PciPlatform.h
@@ -110,13 +110,13 @@ typedef struct _EFI_PCI_PLATFORM_PROTOCOL EFI_PCI_PLATFORM_PROTOCOL;
/// be treated like EFI_RESERVE_ISA_IO_NO_ALIAS |
/// EFI_RESERVE_VGA_IO_ALIAS.
///
-typedef UINT32 EFI_PCI_PLATFORM_POLICY;
+typedef UINT32 EFI_PCI_PLATFORM_POLICY;
///
/// Does not set aside either ISA or VGA I/O resources during PCI
/// enumeration.
///
-#define EFI_RESERVE_NONE_IO_ALIAS 0x0000
+#define EFI_RESERVE_NONE_IO_ALIAS 0x0000
///
/// Sets aside ISA I/O range and all aliases:
@@ -125,22 +125,22 @@ typedef UINT32 EFI_PCI_PLATFORM_POLICY;
/// - n900..nBFF
/// - nD00..nFFF.
///
-#define EFI_RESERVE_ISA_IO_ALIAS 0x0001
+#define EFI_RESERVE_ISA_IO_ALIAS 0x0001
///
/// Sets aside ISA I/O range 0x100-0x3FF.
///
-#define EFI_RESERVE_ISA_IO_NO_ALIAS 0x0002
+#define EFI_RESERVE_ISA_IO_NO_ALIAS 0x0002
///
/// Sets aside VGA I/O ranges and all aliases.
///
-#define EFI_RESERVE_VGA_IO_ALIAS 0x0004
+#define EFI_RESERVE_VGA_IO_ALIAS 0x0004
///
/// Sets aside VGA I/O ranges
///
-#define EFI_RESERVE_VGA_IO_NO_ALIAS 0x0008
+#define EFI_RESERVE_VGA_IO_NO_ALIAS 0x0008
///
/// EFI_PCI_EXECUTION_PHASE is used to call a platform protocol and execute
@@ -317,22 +317,22 @@ struct _EFI_PCI_PLATFORM_PROTOCOL {
/// The notification from the PCI bus enumerator to the platform that it is about to
/// enter a certain phase during the enumeration process.
///
- EFI_PCI_PLATFORM_PHASE_NOTIFY PlatformNotify;
+ EFI_PCI_PLATFORM_PHASE_NOTIFY PlatformNotify;
///
/// The notification from the PCI bus enumerator to the platform for each PCI
/// controller at several predefined points during PCI controller initialization.
///
- EFI_PCI_PLATFORM_PREPROCESS_CONTROLLER PlatformPrepController;
+ EFI_PCI_PLATFORM_PREPROCESS_CONTROLLER PlatformPrepController;
///
/// Retrieves the platform policy regarding enumeration.
///
- EFI_PCI_PLATFORM_GET_PLATFORM_POLICY GetPlatformPolicy;
+ EFI_PCI_PLATFORM_GET_PLATFORM_POLICY GetPlatformPolicy;
///
/// Gets the PCI device's option ROM from a platform-specific location.
///
- EFI_PCI_PLATFORM_GET_PCI_ROM GetPciRom;
+ EFI_PCI_PLATFORM_GET_PCI_ROM GetPciRom;
};
-extern EFI_GUID gEfiPciPlatformProtocolGuid;
+extern EFI_GUID gEfiPciPlatformProtocolGuid;
#endif