Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/netif/ne2000/dp8390.c

    rb72efe8 rc7bbf029  
    483483}
    484484
    485 static list_t *ne2k_receive(ne2k_t *ne2k)
     485static link_t *ne2k_receive(ne2k_t *ne2k)
    486486{
    487487        /*
     
    490490         * frames from the network, but they will be lost.
    491491         */
    492         list_t *frames = (list_t *) malloc(sizeof(list_t));
     492        link_t *frames = (link_t *) malloc(sizeof(link_t));
    493493        if (frames != NULL)
    494494                list_initialize(frames);
     
    567567}
    568568
    569 list_t *ne2k_interrupt(ne2k_t *ne2k, uint8_t isr, uint8_t tsr)
     569link_t *ne2k_interrupt(ne2k_t *ne2k, uint8_t isr, uint8_t tsr)
    570570{
    571571        /* List of received frames */
    572         list_t *frames = NULL;
     572        link_t *frames = NULL;
    573573       
    574574        if (isr & (ISR_PTX | ISR_TXE)) {
Note: See TracChangeset for help on using the changeset viewer.