Changes in uspace/lib/nic/src/nic_driver.c [9cd8165:8d7ec69d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/src/nic_driver.c
r9cd8165 r8d7ec69d 497 497 if (nic_data->client_session != NULL) { 498 498 int rc = nic_ev_addr_changed(nic_data->client_session, 499 address);499 nic_data->device_id, address); 500 500 if (rc != EOK) { 501 501 fibril_rwlock_write_unlock(&nic_data->main_lock); … … 604 604 } 605 605 fibril_rwlock_write_unlock(&nic_data->stats_lock); 606 nic_ev_received(nic_data->client_session, frame->data,607 frame-> size);606 nic_ev_received(nic_data->client_session, nic_data->device_id, 607 frame->data, frame->size); 608 608 } else { 609 609 switch (frame_type) { … … 639 639 fibril_rwlock_write_unlock(&nic_data->stats_lock); 640 640 641 nic_ev_received(nic_data->client_session, data, size); 641 nic_ev_received(nic_data->client_session, nic_data->device_id, 642 data, size); 642 643 } 643 644 … … 690 691 nic_data->dev = NULL; 691 692 nic_data->fun = NULL; 693 nic_data->device_id = NIC_DEVICE_INVALID_ID; 692 694 nic_data->state = NIC_STATE_STOPPED; 693 695 nic_data->client_session = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.