summaryrefslogtreecommitdiffstats
path: root/DynamicTablesPkg/Include/TableGenerator.h
diff options
context:
space:
mode:
authorMichael Kubacki <michael.kubacki@microsoft.com>2021-12-05 14:53:55 -0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-12-07 17:24:28 +0000
commit731c67e1d77b7741a91762d17659fc9fbcb9e305 (patch)
tree74c09d31d65dbaf66cc98dfe99b0837a71e6db31 /DynamicTablesPkg/Include/TableGenerator.h
parent7c342378317039e632d9a1a5d4cf7c21aec8cb7a (diff)
downloadedk2-731c67e1d77b7741a91762d17659fc9fbcb9e305.tar.gz
edk2-731c67e1d77b7741a91762d17659fc9fbcb9e305.tar.bz2
edk2-731c67e1d77b7741a91762d17659fc9fbcb9e305.zip
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>
Diffstat (limited to 'DynamicTablesPkg/Include/TableGenerator.h')
-rw-r--r--DynamicTablesPkg/Include/TableGenerator.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/DynamicTablesPkg/Include/TableGenerator.h b/DynamicTablesPkg/Include/TableGenerator.h
index da6434a48b..0d9ff9a1e3 100644
--- a/DynamicTablesPkg/Include/TableGenerator.h
+++ b/DynamicTablesPkg/Include/TableGenerator.h
@@ -107,7 +107,7 @@ _______________________________________________________________________________
128 - Table Type126
129 - Table Type127
**/
-typedef UINT32 TABLE_GENERATOR_ID;
+typedef UINT32 TABLE_GENERATOR_ID;
/** This enum lists the Table Generator Types.
*/
@@ -127,19 +127,19 @@ typedef enum TableGeneratorNameSpace {
/** A mask for the Table ID bits of TABLE_GENERATOR_ID.
*/
-#define TABLE_ID_MASK 0xFF
+#define TABLE_ID_MASK 0xFF
/** A mask for the Namespace ID bits of TABLE_GENERATOR_ID.
*/
-#define TABLE_NAMESPACEID_MASK (BIT31)
+#define TABLE_NAMESPACEID_MASK (BIT31)
/** A mask for the Table Type bits of TABLE_GENERATOR_ID.
*/
-#define TABLE_TYPE_MASK (BIT29 | BIT28)
+#define TABLE_TYPE_MASK (BIT29 | BIT28)
/** Starting bit position for the Table Type bits
*/
-#define TABLE_TYPE_BIT_SHIFT 28
+#define TABLE_TYPE_BIT_SHIFT 28
/** Starting bit position for the Table Namespace ID bit
*/
@@ -204,11 +204,11 @@ typedef enum TableGeneratorNameSpace {
/** A mask for Major revision.
*/
-#define MAJOR_REVISION_MASK 0xFFFF
+#define MAJOR_REVISION_MASK 0xFFFF
/** A mask for Minor revision.
*/
-#define MINOR_REVISION_MASK 0xFFFF
+#define MINOR_REVISION_MASK 0xFFFF
/** This macro generates a Major.Minor version
where the Major and Minor fields are 16 bit.
@@ -244,4 +244,3 @@ typedef enum TableGeneratorNameSpace {
#define GET_MINOR_REVISION(Revision) ((Revision) & MINOR_REVISION_MASK)
#endif // TABLE_GENERATOR_H_
-