summaryrefslogtreecommitdiff
path: root/include/common
diff options
context:
space:
mode:
authorSathees Balya <sathees.balya@arm.com>2018-09-27 14:41:02 +0100
committerSathees Balya <sathees.balya@arm.com>2018-10-11 17:01:07 +0100
commit89509904c0de8580b957eb419e9601f575bb9ff0 (patch)
tree145d54b6ed9ab3c96b6aeac75da369f9da0fc8a9 /include/common
parentf7a18268ad2201176ffc882b43c900f9d025bde1 (diff)
plat/arm: Fix misra warnings in platform code
Change-Id: Ica944acc474a099219d50b041cfaeabd4f3d362f Signed-off-by: Sathees Balya <sathees.balya@arm.com>
Diffstat (limited to 'include/common')
-rw-r--r--include/common/interrupt_props.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/common/interrupt_props.h b/include/common/interrupt_props.h
index 9786b40c..4ac698df 100644
--- a/include/common/interrupt_props.h
+++ b/include/common/interrupt_props.h
@@ -12,10 +12,10 @@
/* Create an interrupt property descriptor from various interrupt properties */
#define INTR_PROP_DESC(num, pri, grp, cfg) \
{ \
- .intr_num = num, \
- .intr_pri = pri, \
- .intr_grp = grp, \
- .intr_cfg = cfg, \
+ .intr_num = (num), \
+ .intr_pri = (pri), \
+ .intr_grp = (grp), \
+ .intr_cfg = (cfg), \
}
typedef struct interrupt_prop {