Changes in uspace/drv/nic/ne2k/ne2k.c [1c7b0db7:3a4c6d9] in mainline
- File:
-
- 1 edited
-
uspace/drv/nic/ne2k/ne2k.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/ne2k/ne2k.c
r1c7b0db7 r3a4c6d9 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.
