Changes in uspace/lib/nic/src/nic_impl.c [8d9217d:6eab537d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/src/nic_impl.c
r8d9217d r6eab537d 844 844 } 845 845 846 errno_t nic_fun_add_to_cats(ddf_fun_t *fun)847 {848 errno_t rc;849 rc = ddf_fun_add_to_category(fun, DEVICE_CATEGORY_NIC);850 if (rc != EOK)851 goto err_add_to_cat;852 853 rc = ddf_fun_add_to_category(fun, "pcap");854 if (rc != EOK) {855 //ddf_msg(LVL_ERROR, "Failed adding function to category pcap");856 goto err_add_to_cat;857 }858 return EOK;859 860 err_add_to_cat:861 ddf_fun_unbind(fun);862 return rc;863 }864 865 846 /** @} 866 847 */
Note:
See TracChangeset
for help on using the changeset viewer.