summaryrefslogtreecommitdiff
path: root/include/common
diff options
context:
space:
mode:
authorSoby Mathew <soby.mathew@arm.com>2018-10-12 14:19:28 +0100
committerGitHub <noreply@github.com>2018-10-12 14:19:28 +0100
commitd9f529f598358dbb8564b766c862bfbb98d79b84 (patch)
treefb7452ce903a67e80cd366283a671c2654b450bb /include/common
parenta3f92142e2fe21fc717aedb8b958b1b8c7502630 (diff)
parent89509904c0de8580b957eb419e9601f575bb9ff0 (diff)
Merge pull request #1606 from satheesbalya-arm/sb1_2603_misra_plat
plat/arm: Fix misra warnings in platform code
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 {