summaryrefslogtreecommitdiffstats
path: root/DynamicTablesPkg/Library/Common/TableHelperLib/ConfigurationManagerObjectParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'DynamicTablesPkg/Library/Common/TableHelperLib/ConfigurationManagerObjectParser.h')
-rw-r--r--DynamicTablesPkg/Library/Common/TableHelperLib/ConfigurationManagerObjectParser.h24
1 files changed, 11 insertions, 13 deletions
diff --git a/DynamicTablesPkg/Library/Common/TableHelperLib/ConfigurationManagerObjectParser.h b/DynamicTablesPkg/Library/Common/TableHelperLib/ConfigurationManagerObjectParser.h
index e229df7095..3204f53143 100644
--- a/DynamicTablesPkg/Library/Common/TableHelperLib/ConfigurationManagerObjectParser.h
+++ b/DynamicTablesPkg/Library/Common/TableHelperLib/ConfigurationManagerObjectParser.h
@@ -9,7 +9,7 @@
#ifndef CONFIGURATION_MANAGER_OBJECT_PARSER_H_
#define CONFIGURATION_MANAGER_OBJECT_PARSER_H_
-#define OUTPUT_FIELD_COLUMN_WIDTH 32
+#define OUTPUT_FIELD_COLUMN_WIDTH 32
/** Function prototype to format a field print.
@@ -17,7 +17,7 @@
the 'Format' member of ACPI_PARSER.
@param [in] Ptr Pointer to the start of the buffer.
**/
-typedef VOID (EFIAPI *FNPTR_PRINT_FORMATTER)(CONST CHAR8* Format, UINT8* Ptr);
+typedef VOID (EFIAPI *FNPTR_PRINT_FORMATTER)(CONST CHAR8 *Format, UINT8 *Ptr);
/**
The CM_OBJ_PARSER structure describes the fields of an CmObject and
@@ -28,30 +28,29 @@ typedef VOID (EFIAPI *FNPTR_PRINT_FORMATTER)(CONST CHAR8* Format, UINT8* Ptr);
*/
typedef struct CmObjParser CM_OBJ_PARSER;
struct CmObjParser {
-
/// String describing the Cm Object
- CONST CHAR8* NameStr;
+ CONST CHAR8 *NameStr;
/// The length of the field.
- UINT32 Length;
+ UINT32 Length;
/// Optional Print() style format string for tracing the data. If not
/// used this must be set to NULL.
- CONST CHAR8* Format;
+ CONST CHAR8 *Format;
/// Optional pointer to a print formatter function which
/// is typically used to trace complex field information.
/// If not used this must be set to NULL.
/// The Format string is passed to the PrintFormatter function
/// but may be ignored by the implementation code.
- FNPTR_PRINT_FORMATTER PrintFormatter;
+ FNPTR_PRINT_FORMATTER PrintFormatter;
/// Optional pointer to print the fields of another CM_OBJ_PARSER
/// structure. This is useful to print sub-structures.
- CONST CM_OBJ_PARSER *SubObjParser;
+ CONST CM_OBJ_PARSER *SubObjParser;
/// Count of items in the SubObj.
- UINTN SubObjItemCount;
+ UINTN SubObjItemCount;
};
/**
@@ -59,15 +58,14 @@ struct CmObjParser {
with their object names.
*/
typedef struct CmObjParserArray {
-
/// Object name
- CONST CHAR8 * ObjectName;
+ CONST CHAR8 *ObjectName;
/// Function pointer to the parser
- CONST CM_OBJ_PARSER * Parser;
+ CONST CM_OBJ_PARSER *Parser;
/// Count of items
- UINTN ItemCount;
+ UINTN ItemCount;
} CM_OBJ_PARSER_ARRAY;
#endif // CONFIGURATION_MANAGER_OBJECT_PARSER_H_