forked from Imagelibrary/rtems
bsps/irq: Remove BSP_INTERRUPT_VECTOR_MIN
Remove BSP_INTERRUPT_VECTOR_MIN and unconditionally let interrupt vector numbers start with zero. The BSP_INTERRUPT_VECTOR_MIN == 0 invariant was tested by the previous commit and building all BSPs. Update #3269.
This commit is contained in:
@@ -87,7 +87,7 @@ void bsp_interrupt_report_with_plugin(
|
||||
"--------+----------------------------------+---------+------------+------------\n"
|
||||
);
|
||||
|
||||
for (v = BSP_INTERRUPT_VECTOR_MIN; v <= BSP_INTERRUPT_VECTOR_MAX; ++v) {
|
||||
for (v = 0; v <= BSP_INTERRUPT_VECTOR_MAX; ++v) {
|
||||
e.vector = v;
|
||||
rtems_interrupt_handler_iterate(
|
||||
v,
|
||||
|
||||
Reference in New Issue
Block a user