Changeset e160bfe8 in mainline for uspace/lib/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. - Location:
- uspace/lib/c
- Files:
-
- 3 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 */ -
uspace/lib/c/include/devman.h
r31cca4f3 re160bfe8 82 82 extern int devman_driver_get_state(devman_handle_t, driver_state_t *); 83 83 extern int devman_driver_load(devman_handle_t); 84 extern int devman_driver_unload(devman_handle_t); 84 85 85 86 #endif -
uspace/lib/c/include/ipc/devman.h
r31cca4f3 re160bfe8 156 156 DRIVER_FUN_ONLINE, 157 157 DRIVER_FUN_OFFLINE, 158 DRIVER_STOP 158 159 } devman_to_driver_t; 159 160 … … 176 177 DEVMAN_DRIVER_GET_NAME, 177 178 DEVMAN_DRIVER_GET_STATE, 178 DEVMAN_DRIVER_LOAD 179 DEVMAN_DRIVER_LOAD, 180 DEVMAN_DRIVER_UNLOAD 179 181 } client_to_devman_t; 180 182
Note:
See TracChangeset
for help on using the changeset viewer.