Changeset 0b5a4131 in mainline for uspace/srv/devman/main.c
- Timestamp:
- 2010-11-18T18:10:11Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c63e70c
- Parents:
- 991f645
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
r991f645 r0b5a4131 202 202 static void devman_add_child(ipc_callid_t callid, ipc_call_t *call) 203 203 { 204 dev ice_handle_t parent_handle = IPC_GET_ARG1(*call);204 devman_handle_t parent_handle = IPC_GET_ARG1(*call); 205 205 ipcarg_t match_count = IPC_GET_ARG2(*call); 206 206 dev_tree_t *tree = &device_tree; … … 271 271 static void devman_add_device_to_class(ipc_callid_t callid, ipc_call_t *call) 272 272 { 273 dev ice_handle_t handle = IPC_GET_ARG1(*call);273 devman_handle_t handle = IPC_GET_ARG1(*call); 274 274 275 275 /* Get class name. */ … … 414 414 bool drv_to_parent) 415 415 { 416 dev ice_handle_t handle = IPC_GET_ARG2(*icall);416 devman_handle_t handle = IPC_GET_ARG2(*icall); 417 417 418 418 node_t *dev = find_dev_node(&device_tree, handle);
Note:
See TracChangeset
for help on using the changeset viewer.