Ignore:
Timestamp:
Apr 5, 2015, 12:11:08 AM (10 years ago)
Author:
alain
Message:

Extending the mapping name to 64 characters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_xml/xml_parser.c

    r531 r548  
    878878        else if (strcmp(str, "ISR_MMC"    ) == 0)  irq[irq_index]->isr = ISR_MMC;
    879879        else if (strcmp(str, "ISR_DMA"    ) == 0)  irq[irq_index]->isr = ISR_DMA;
    880         else if (strcmp(str, "ISR_SPI"    ) == 0)  irq[irq_index]->isr = ISR_SPI;
     880        else if (strcmp(str, "ISR_SDC"    ) == 0)  irq[irq_index]->isr = ISR_SDC;
    881881        else if (strcmp(str, "ISR_MWR"    ) == 0)  irq[irq_index]->isr = ISR_MWR;
    882882        else if (strcmp(str, "ISR_HBA"    ) == 0)  irq[irq_index]->isr = ISR_HBA;
     
    10621062            else if (strcmp(subtype, "HBA") == 0)
    10631063            periph[periph_index]->subtype = IOC_SUBTYPE_HBA;
    1064             else if (strcmp(subtype, "SPI") == 0)
    1065             periph[periph_index]->subtype = IOC_SUBTYPE_SPI;
     1064            else if (strcmp(subtype, "SDC") == 0)
     1065            periph[periph_index]->subtype = IOC_SUBTYPE_SDC;
    10661066        }
    10671067        else
Note: See TracChangeset for help on using the changeset viewer.