Merge "feat(gicv3): enlarge the range for intr_num of structure interrupt_prop_t" into integration

This commit is contained in:
Manish Pandey 2023-02-22 10:51:11 +01:00 committed by TrustedFirmware Code Review
commit ba12668a65
2 changed files with 2 additions and 2 deletions

View file

@ -1330,7 +1330,7 @@ element of the array specifies the interrupt number and its attributes
(priority, group, configuration). Each element of the array shall be populated (priority, group, configuration). Each element of the array shall be populated
by the macro ``INTR_PROP_DESC()``. The macro takes the following arguments: by the macro ``INTR_PROP_DESC()``. The macro takes the following arguments:
- 10-bit interrupt number, - 13-bit interrupt number,
- 8-bit interrupt priority, - 8-bit interrupt priority,

View file

@ -19,7 +19,7 @@
} }
typedef struct interrupt_prop { typedef struct interrupt_prop {
unsigned int intr_num:10; unsigned int intr_num:13;
unsigned int intr_pri:8; unsigned int intr_pri:8;
unsigned int intr_grp:2; unsigned int intr_grp:2;
unsigned int intr_cfg:2; unsigned int intr_cfg:2;