Changeset 281 for soft/giet_vm/giet_kernel/irq_handler.c
- Timestamp:
- Jan 30, 2014, 5:32:13 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_kernel/irq_handler.c
r279 r281 21 21 #include <ioc_driver.h> 22 22 #include <dma_driver.h> 23 #include <mapping_info.h>23 #include <mapping_info.h> 24 24 #include <utils.h> 25 25 … … 59 59 // get the highest priority active IRQ index 60 60 61 unsigned int icu_out_index = local_id * IRQ_PER_PROCESSOR; 62 61 63 #if USE_XICU 62 ko = _xcu_get_index( cluster_id, local_id, &irq_id );64 ko = _xcu_get_index( cluster_id, icu_out_index, &irq_id ); 63 65 #else 64 ko = _icu_get_index( cluster_id, local_id, &irq_id );66 ko = _icu_get_index( cluster_id, icu_out_index, &irq_id ); 65 67 #endif 66 68
Note: See TracChangeset
for help on using the changeset viewer.