Changeset 96b02eb9 in mainline for uspace/srv/devman/main.c
- Timestamp:
- 2010-12-14T12:52:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b10dab
- Parents:
- 554debd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
r554debd r96b02eb9 184 184 * @return Zero on success, negative error code otherwise. 185 185 */ 186 static int devman_receive_match_ids( ipcarg_t match_count,186 static int devman_receive_match_ids(sysarg_t match_count, 187 187 match_id_list_t *match_ids) 188 188 { … … 211 211 { 212 212 devman_handle_t parent_handle = IPC_GET_ARG1(*call); 213 ipcarg_t match_count = IPC_GET_ARG2(*call);213 sysarg_t match_count = IPC_GET_ARG2(*call); 214 214 dev_tree_t *tree = &device_tree; 215 215 … … 531 531 532 532 /* Select interface. */ 533 switch (( ipcarg_t) (IPC_GET_ARG1(*icall))) {533 switch ((sysarg_t) (IPC_GET_ARG1(*icall))) { 534 534 case DEVMAN_DRIVER: 535 535 devman_connection_driver(iid, icall); … … 599 599 600 600 /* Register device manager at naming service. */ 601 ipcarg_t phonead;601 sysarg_t phonead; 602 602 if (ipc_connect_to_me(PHONE_NS, SERVICE_DEVMAN, 0, 0, &phonead) != 0) 603 603 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.