Changeset eaa0c3f in mainline for uspace/lib/net/nil/nil_remote.c
- Timestamp:
- 2012-01-21T23:55:03Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c38e417
- Parents:
- 86c71de (diff), e98fe28c (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
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/nil/nil_remote.c
r86c71de reaa0c3f 36 36 */ 37 37 38 #include <ipc/loc.h> 38 39 #include <nil_remote.h> 39 40 #include <generic.h> … … 123 124 124 125 int nil_device_req(async_sess_t *sess, nic_device_id_t device_id, 125 devman_handle_t handle, size_t mtu)126 service_id_t sid, size_t mtu) 126 127 { 127 128 async_exch_t *exch = async_exchange_begin(sess); 128 129 int rc = async_req_3_0(exch, NET_NIL_DEVICE, (sysarg_t) device_id, 129 (sysarg_t) handle, (sysarg_t) mtu);130 (sysarg_t) sid, (sysarg_t) mtu); 130 131 async_exchange_end(exch); 131 132 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.