diff options
author | Soby Mathew <soby.mathew@arm.com> | 2015-12-03 14:12:54 +0000 |
---|---|---|
committer | Soby Mathew <soby.mathew@arm.com> | 2015-12-04 12:02:12 +0000 |
commit | 03ffb6bdefca8f1aaf7ece10215f70b5ba51cae9 (patch) | |
tree | 2716dcfe68cd271ee2016ac83066e0972cc13d0d /include/drivers | |
parent | f3974ea5b17b0ec88091a8a8c59e56da0fe507f0 (diff) |
Rename GICv3 interrupt group macros
This patch renames the GICv3 interrupt group macros from
INT_TYPE_G0, INT_TYPE_G1S and INT_TYPE_G1NS to INTR_GROUP0,
INTR_GROUP1S and INTR_GROUP1NS respectively.
Change-Id: I40c66f589ce6234fa42205adcd91f7d6ad8f33d4
Diffstat (limited to 'include/drivers')
-rw-r--r-- | include/drivers/arm/gicv3.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drivers/arm/gicv3.h b/include/drivers/arm/gicv3.h index e874f5cd..ae6fd917 100644 --- a/include/drivers/arm/gicv3.h +++ b/include/drivers/arm/gicv3.h @@ -35,9 +35,9 @@ * GICv3 miscellaneous definitions ******************************************************************************/ /* Interrupt group definitions */ -#define INT_TYPE_G1S 0 -#define INT_TYPE_G0 1 -#define INT_TYPE_G1NS 2 +#define INTR_GROUP1S 0 +#define INTR_GROUP0 1 +#define INTR_GROUP1NS 2 /* Interrupt IDs reported by the HPPIR and IAR registers */ #define PENDING_G1S_INTID 1020 |