Changeset 548 for soft/giet_vm/giet_xml/xml_parser.c
- Timestamp:
- Apr 5, 2015, 12:11:08 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_xml/xml_parser.c
r531 r548 878 878 else if (strcmp(str, "ISR_MMC" ) == 0) irq[irq_index]->isr = ISR_MMC; 879 879 else if (strcmp(str, "ISR_DMA" ) == 0) irq[irq_index]->isr = ISR_DMA; 880 else if (strcmp(str, "ISR_S PI" ) == 0) irq[irq_index]->isr = ISR_SPI;880 else if (strcmp(str, "ISR_SDC" ) == 0) irq[irq_index]->isr = ISR_SDC; 881 881 else if (strcmp(str, "ISR_MWR" ) == 0) irq[irq_index]->isr = ISR_MWR; 882 882 else if (strcmp(str, "ISR_HBA" ) == 0) irq[irq_index]->isr = ISR_HBA; … … 1062 1062 else if (strcmp(subtype, "HBA") == 0) 1063 1063 periph[periph_index]->subtype = IOC_SUBTYPE_HBA; 1064 else if (strcmp(subtype, "S PI") == 0)1065 periph[periph_index]->subtype = IOC_SUBTYPE_S PI;1064 else if (strcmp(subtype, "SDC") == 0) 1065 periph[periph_index]->subtype = IOC_SUBTYPE_SDC; 1066 1066 } 1067 1067 else
Note: See TracChangeset
for help on using the changeset viewer.