Changes in uspace/lib/nic/src/nic_driver.c [cde999a:2fd26bb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/src/nic_driver.c
rcde999a r2fd26bb 241 241 * @param[out] resources Parsed lists of resources. 242 242 * 243 * @return EOK or anerror code243 * @return EOK or negative error code 244 244 */ 245 245 int nic_get_resources(nic_t *nic_data, hw_res_list_parsed_t *resources) … … 521 521 fibril_rwlock_read_lock(&nic_data->rxc_lock); 522 522 nic_frame_type_t frame_type; 523 boolcheck = nic_rxc_check(&nic_data->rx_control, frame->data,523 int check = nic_rxc_check(&nic_data->rx_control, frame->data, 524 524 frame->size, &frame_type); 525 525 fibril_rwlock_read_unlock(&nic_data->rxc_lock); … … 1092 1092 fibril_rwlock_read_unlock(&nic->main_lock); 1093 1093 } 1094 return EOK;1094 return 0; 1095 1095 } 1096 1096
Note:
See TracChangeset
for help on using the changeset viewer.