Changeset 503ce85 in mainline for uspace/drv/nic/ne2k/ne2k.c
- Timestamp:
- 2025-08-03T09:03:10Z (7 months ago)
- Children:
- adbd7e1
- Parents:
- 5caad1d (diff), 46e2152 (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/drv/nic/ne2k/ne2k.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/ne2k/ne2k.c
r5caad1d r503ce85 44 44 #include <str_error.h> 45 45 #include <async.h> 46 #include <ddf/log.h> 46 47 #include "dp8390.h" 47 48 … … 450 451 } 451 452 452 rc = ddf_fun_add_to_category(fun, DEVICE_CATEGORY_NIC);453 rc = nic_fun_add_to_cats(fun); 453 454 if (rc != EOK) { 455 ddf_msg(LVL_ERROR, "Failed adding function to categories"); 454 456 ddf_fun_unbind(fun); 455 ddf_fun_destroy(fun);456 457 return rc; 457 458 } … … 497 498 nic_driver_implement(&ne2k_driver_ops, &ne2k_dev_ops, &ne2k_nic_iface); 498 499 500 ddf_log_init(NAME); 499 501 return ddf_driver_main(&ne2k_driver); 500 502 }
Note:
See TracChangeset
for help on using the changeset viewer.
