interrupts: fix non-sensical macro

Parenthesis are not balanced, not sure if/how this ever worked?

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
This commit is contained in:
Pierre-Louis Bossart 2018-04-04 18:46:47 -05:00 committed by Liam Girdwood
parent c819afd16f
commit 3477df30d3
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@
#define REEF_IRQ_NUMBER(_irq) \
((_irq >> REEF_IRQ_NUM_SHIFT) & REEF_IRQ_NUM_MASK)
#define REEF_IRQ_LEVEL(_level) \
((_level >> REEF_IRQ_LEVEL_SHIFT & REEF_IRQ_LEVEL_MASK)
((_level >> REEF_IRQ_LEVEL_SHIFT) & REEF_IRQ_LEVEL_MASK)
#define REEF_IRQ_BIT(_bit) \
((_bit >> REEF_IRQ_BIT_SHIFT) & REEF_IRQ_BIT_MASK)
#define REEF_IRQ_CPU(_cpu) \