From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web09.8637.1615814810450147833 for ; Mon, 15 Mar 2021 06:26:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: pierre.gondois@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 2422BED1; Mon, 15 Mar 2021 06:26:50 -0700 (PDT) Received: from e120189.arm.com (unknown [10.57.51.200]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 5AF4E3F792; Mon, 15 Mar 2021 06:26:49 -0700 (PDT) From: "PierreGondois" To: devel@edk2.groups.io, Sami.Mujawar@arm.com, Alexei.Fedorov@arm.com Subject: [PATCH v1 1/2] DynamicTablesPkg: Re-order GicItsIdentifierArray struct Date: Mon, 15 Mar 2021 13:26:31 +0000 Message-Id: <20210315132632.21890-2-Pierre.Gondois@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210315132632.21890-1-Pierre.Gondois@arm.com> References: <20210315132632.21890-1-Pierre.Gondois@arm.com> From: Pierre Gondois 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 --- The changes can be seen at: https://github.com/PierreARM/edk2/tree/1685_CheckUpArmNameSpaceObjects_v1 .../Include/ArmNameSpaceObjects.h | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/DynamicTablesPkg/Include/ArmNameSpaceObjects.h b/DynamicTablesPkg/Include/ArmNameSpaceObjects.h index f0654866444e..bc463d19879d 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.
+ Copyright (c) 2017 - 2021, Arm Limited. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -465,16 +465,6 @@ typedef struct CmArmItsGroupNode { CM_OBJECT_TOKEN ItsIdToken; } 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. @@ -636,6 +626,16 @@ typedef struct CmArmPmcgNode { CM_OBJECT_TOKEN ReferenceToken; } 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. -- 2.17.1