DynamicTablesPkg: Apply uncrustify changes

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737

Apply uncrustify changes to .c/.h files in the DynamicTablesPkg 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: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
Michael Kubacki
2021-12-05 14:53:55 -08:00
committed by mergify[bot]
parent 7c34237831
commit 731c67e1d7
85 changed files with 5347 additions and 4795 deletions

View File

@@ -22,21 +22,21 @@ typedef struct IortNodeIndexer {
/// Index token for the Node
CM_OBJECT_TOKEN Token;
/// Pointer to the node
VOID * Object;
VOID *Object;
/// Node offset from the start of the IORT table
UINT32 Offset;
} IORT_NODE_INDEXER;
typedef struct AcpiIortGenerator {
/// ACPI Table generator header
ACPI_TABLE_GENERATOR Header;
ACPI_TABLE_GENERATOR Header;
// IORT Generator private data
/// IORT node count
UINT32 IortNodeCount;
UINT32 IortNodeCount;
/// Pointer to the node indexer array
IORT_NODE_INDEXER * NodeIndexer;
IORT_NODE_INDEXER *NodeIndexer;
} ACPI_IORT_GENERATOR;
#pragma pack()