diff options
author | Pierre Gondois <Pierre.Gondois@arm.com> | 2021-03-15 13:26:31 +0000 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-04-13 14:14:49 +0000 |
commit | cc00dbcb19a199db0ecd68a6fd9525eda3ee552e (patch) | |
tree | a4702297d2477abdb06f1b3f7d669a61fc051e50 /DynamicTablesPkg | |
parent | 71cdb91f313380152d7bf38cfeebe76f5b2d39ac (diff) | |
download | edk2-cc00dbcb19a199db0ecd68a6fd9525eda3ee552e.tar.gz edk2-cc00dbcb19a199db0ecd68a6fd9525eda3ee552e.tar.bz2 edk2-cc00dbcb19a199db0ecd68a6fd9525eda3ee552e.zip |
DynamicTablesPkg: Re-order GicItsIdentifierArray struct
The structure is not correctly placed in the file. Move it
so it follows the EARM_OBJECT_ID enum order.
Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'DynamicTablesPkg')
-rw-r--r-- | DynamicTablesPkg/Include/ArmNameSpaceObjects.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/DynamicTablesPkg/Include/ArmNameSpaceObjects.h b/DynamicTablesPkg/Include/ArmNameSpaceObjects.h index f065486644..bc463d1987 100644 --- a/DynamicTablesPkg/Include/ArmNameSpaceObjects.h +++ b/DynamicTablesPkg/Include/ArmNameSpaceObjects.h @@ -1,6 +1,6 @@ /** @file
- Copyright (c) 2017 - 2020, Arm Limited. All rights reserved.<BR>
+ Copyright (c) 2017 - 2021, Arm Limited. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
@@ -466,16 +466,6 @@ typedef struct CmArmItsGroupNode { } CM_ARM_ITS_GROUP_NODE;
/** A structure that describes the
- GIC ITS Identifiers for an ITS Group node.
-
- ID: EArmObjGicItsIdentifierArray
-*/
-typedef struct CmArmGicItsIdentifier {
- /// The ITS Identifier
- UINT32 ItsId;
-} CM_ARM_ITS_IDENTIFIER;
-
-/** A structure that describes the
Named component node for the Platform.
ID: EArmObjNamedComponent
@@ -637,6 +627,16 @@ typedef struct CmArmPmcgNode { } CM_ARM_PMCG_NODE;
/** A structure that describes the
+ GIC ITS Identifiers for an ITS Group node.
+
+ ID: EArmObjGicItsIdentifierArray
+*/
+typedef struct CmArmGicItsIdentifier {
+ /// The ITS Identifier
+ UINT32 ItsId;
+} CM_ARM_ITS_IDENTIFIER;
+
+/** A structure that describes the
ID Mappings for the Platform.
ID: EArmObjIdMappingArray
|