Changeset 984a9ba in mainline for uspace/lib/nic
- Timestamp:
- 2018-07-05T09:34:09Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63d46341
- Parents:
- 76f566d
- Location:
- uspace/lib/nic
- Files:
-
- 2 edited
-
include/nic_impl.h (modified) (1 diff)
-
src/nic_impl.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/include/nic_impl.h
r76f566d r984a9ba 83 83 extern errno_t nic_poll_now_impl(ddf_fun_t *); 84 84 85 extern void nic_default_handler_impl(ddf_fun_t *dev_fun, 86 cap_call_handle_t chandle, ipc_call_t *call); 85 extern void nic_default_handler_impl(ddf_fun_t *dev_fun, ipc_call_t *call); 87 86 extern errno_t nic_open_impl(ddf_fun_t *fun); 88 87 extern void nic_close_impl(ddf_fun_t *fun); -
uspace/lib/nic/src/nic_impl.c
r76f566d r984a9ba 810 810 * Logs a warning message and returns ENOTSUP to the caller. 811 811 * 812 * @param fun The DDF function where the method should be called. 813 * @param chandle IPC call handle 814 * @param call IPC call data 815 */ 816 void nic_default_handler_impl(ddf_fun_t *fun, cap_call_handle_t chandle, 817 ipc_call_t *call) 818 { 819 async_answer_0(chandle, ENOTSUP); 812 * @param fun The DDF function where the method should be called. 813 * @param call IPC call data 814 * 815 */ 816 void nic_default_handler_impl(ddf_fun_t *fun, ipc_call_t *call) 817 { 818 async_answer_0(call, ENOTSUP); 820 819 } 821 820
Note:
See TracChangeset
for help on using the changeset viewer.
