Changes in uspace/srv/hw/netif/ne2000/ne2000.c [79ae36dd:b72efe8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/netif/ne2000/ne2000.c
r79ae36dd rb72efe8 168 168 169 169 if (ne2k != NULL) { 170 li nk_t *frames =170 list_t *frames = 171 171 ne2k_interrupt(ne2k, IRQ_GET_ISR(*call), IRQ_GET_TSR(*call)); 172 172 173 173 if (frames != NULL) { 174 174 while (!list_empty(frames)) { 175 frame_t *frame = 176 list_ get_instance(frames->next, frame_t, link);175 frame_t *frame = list_get_instance( 176 list_first(frames), frame_t, link); 177 177 178 178 list_remove(&frame->link); 179 nil_received_msg(nil_phone, device_id, frame->packet,180 SERVICE_NONE);179 nil_received_msg(nil_phone, device_id, 180 frame->packet, SERVICE_NONE); 181 181 free(frame); 182 182 }
Note:
See TracChangeset
for help on using the changeset viewer.