Changeset 132ab5d1 in mainline for uspace/lib/nic/src/nic_driver.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/lib/nic/src/nic_driver.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/src/nic_driver.c
r8bfb163 r132ab5d1 241 241 * @param[out] resources Parsed lists of resources. 242 242 * 243 * @return EOK or negativeerror code243 * @return EOK or an 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 intcheck = nic_rxc_check(&nic_data->rx_control, frame->data,523 bool 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 0;1094 return EOK; 1095 1095 } 1096 1096
Note:
See TracChangeset
for help on using the changeset viewer.
