interrupt_controller: gic: Fix GICD_ICFGR field definition names

This commit fixes the field definition names for `GICD_ICFGR`, which
were incorrectly prefixed with `GICC_`.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
Stephanos Ioannidis 2020-03-19 14:33:38 +09:00 committed by Ioannis Glaropoulos
commit 495407aabc
2 changed files with 5 additions and 5 deletions

View file

@ -200,9 +200,9 @@
/* GICC_IAR */
#define GICC_IAR_SPURIOUS 1023
/* GICC_ICFGR */
#define GICC_ICFGR_MASK BIT_MASK(2)
#define GICC_ICFGR_TYPE BIT(1)
/* GICD_ICFGR */
#define GICD_ICFGR_MASK BIT_MASK(2)
#define GICD_ICFGR_TYPE BIT(1)
#endif /* CONFIG_GIC_VER <= 2 */