mirror of https://github.com/acidanthera/audk.git
DynamicTablesPkg: Print specifier macro for CM_OBJECT_ID
Add a macro that specifies the format for printing CM_OBJECT_ID. This allows to print the CM_OBJECT_ID is a consistent way in the output logs. Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
parent
103fa647d1
commit
742dafd2cc
|
@ -1,6 +1,6 @@
|
|||
/** @file
|
||||
|
||||
Copyright (c) 2017 - 2019, ARM Limited. All rights reserved.
|
||||
Copyright (c) 2017 - 2022, ARM Limited. All rights reserved.
|
||||
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
|
@ -84,6 +84,11 @@ Object ID's in the ARM Namespace:
|
|||
*/
|
||||
typedef UINT32 CM_OBJECT_ID;
|
||||
|
||||
//
|
||||
// Helper macro to format a CM_OBJECT_ID.
|
||||
//
|
||||
#define FMT_CM_OBJECT_ID "0x%lx"
|
||||
|
||||
/** A mask for Object ID
|
||||
*/
|
||||
#define OBJECT_ID_MASK 0xFF
|
||||
|
|
Loading…
Reference in New Issue