Changeset 519 for soft/giet_vm/giet_kernel/irq_handler.c
- Timestamp:
- Mar 10, 2015, 3:01:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_kernel/irq_handler.c
r494 r519 27 27 #endif 28 28 29 //////////////////////////////////////////// 30 // ISR_TYPE names for display 31 /////////////////////////////////////////// 29 ///////////////////////////////////////////////////////////////////////// 30 // These ISR_TYPE names for display must be consistent with values in 31 // irq_handler.h / mapping.py / xml_driver.c 32 ///////////////////////////////////////////////////////////////////////// 32 33 __attribute__((section(".kdata"))) 33 34 char* _isr_type_name[] = { "DEFAULT", … … 43 44 "MMC" , 44 45 "DMA" , 45 "SPI" }; 46 "SPI" , 47 "MWR" }; 46 48 ///////////////// 47 49 void _irq_demux() … … 113 115 else if ( isr_type == ISR_DMA ) _dma_isr ( irq_type, irq_id, channel ); 114 116 else if ( isr_type == ISR_SPI ) _spi_isr ( irq_type, irq_id, channel ); 117 else if ( isr_type == ISR_MWR ) _mwr_isr ( irq_type, irq_id, channel ); 115 118 else 116 119 {
Note: See TracChangeset
for help on using the changeset viewer.