Changeset e160bfe8 in mainline for uspace/lib/c/generic/devman.c
- Timestamp:
- 2017-10-23T18:51:34Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 327f147
- Parents:
- 31cca4f3 (diff), 367db39a (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/c/generic/devman.c
r31cca4f3 re160bfe8 719 719 } 720 720 721 int devman_driver_unload(devman_handle_t drvh) 722 { 723 async_exch_t *exch = devman_exchange_begin(INTERFACE_DDF_CLIENT); 724 if (exch == NULL) 725 return ENOMEM; 726 727 int rc = async_req_1_0(exch, DEVMAN_DRIVER_UNLOAD, drvh); 728 729 devman_exchange_end(exch); 730 return rc; 731 } 732 721 733 /** @} 722 734 */
Note:
See TracChangeset
for help on using the changeset viewer.