Changeset 8d9217d in mainline for uspace/lib/nic/src/nic_impl.c
- Timestamp:
- 2024-03-20T17:06:29Z (10 months ago)
- Children:
- 384f081
- Parents:
- 78edb5e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/src/nic_impl.c
r78edb5e r8d9217d 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 846 865 /** @} 847 866 */
Note:
See TracChangeset
for help on using the changeset viewer.