risc-v/litex: fix typo in litex/irq.h
Current LITEX_LAST_IRQ looks like a typo that blocks compilation of `arty_a7/knsh` configuration. This fixes the build but I have no such device for test. Found it was LITEX_IRQ_LAST before commit #ee84ea3 so likely typo was introduced by then. Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
This commit is contained in:
parent
14b6f31c8c
commit
af15cd40aa
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
/* The last hardware IRQ number */
|
/* The last hardware IRQ number */
|
||||||
|
|
||||||
#define LITEX_LAST_IRQ (LITEX_IRQ_GPIO_BASE + LITEX_IRQ_GPIO_LENGTH)
|
#define LITEX_IRQ_LAST (LITEX_IRQ_GPIO_BASE + LITEX_IRQ_GPIO_LENGTH)
|
||||||
|
|
||||||
/* Second level GPIO interrupts. GPIO interrupts are decoded and dispatched
|
/* Second level GPIO interrupts. GPIO interrupts are decoded and dispatched
|
||||||
* as a second level of decoding: The first level dispatches to the GPIO
|
* as a second level of decoding: The first level dispatches to the GPIO
|
||||||
|
|
Loading…
Reference in New Issue