mirror of https://github.com/thesofproject/sof.git
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:
parent
c819afd16f
commit
3477df30d3
|
@ -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) \
|
||||
|
|
Loading…
Reference in New Issue