Changeset ab936440 in mainline for uspace/srv/devman/main.c
- Timestamp:
- 2019-02-12T20:42:42Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f31ca47
- Parents:
- 7f7817a9 (diff), 4805495 (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. - git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-12 20:26:18)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-12 20:42:42)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
r7f7817a9 rab936440 136 136 137 137 async_exch_t *exch = async_exchange_begin(driver->sess); 138 async_forward_ fast(icall, exch, INTERFACE_DDF_CLIENT, handle, 0, IPC_FF_NONE);138 async_forward_1(icall, exch, INTERFACE_DDF_CLIENT, handle, IPC_FF_NONE); 139 139 async_exchange_end(exch); 140 140 … … 215 215 216 216 async_exch_t *exch = async_exchange_begin(driver->sess); 217 async_forward_ fast(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, 0, IPC_FF_NONE);217 async_forward_1(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, IPC_FF_NONE); 218 218 async_exchange_end(exch); 219 219 … … 250 250 251 251 async_exch_t *exch = async_exchange_begin(driver->sess); 252 async_forward_ fast(icall, exch, iface, handle, 0, IPC_FF_NONE);252 async_forward_1(icall, exch, iface, handle, IPC_FF_NONE); 253 253 async_exchange_end(exch); 254 254
Note:
See TracChangeset
for help on using the changeset viewer.