core: Limit children irq mask

Currently we support maximum of 32 children irqs, so limit the irq mask to not overflow the children irq array.

Signed-off-by: Tomasz Lauda <tomasz.lauda@linux.intel.com>
This commit is contained in:
Tomasz Lauda 2018-03-29 13:55:00 +02:00 committed by Liam Girdwood
parent 15d3a51e58
commit 7f9d39c819
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
#define REEF_IRQ_NUM_SHIFT 0
#define REEF_IRQ_NUM_MASK 0xff
#define REEF_IRQ_LEVEL_MASK 0xff
#define REEF_IRQ_BIT_MASK 0xff
#define REEF_IRQ_BIT_MASK 0x1f
#define REEF_IRQ_CPU_MASK 0xff
#define REEF_IRQ(_bit, _level, _cpu, _number) \