Changeset 96b02eb9 in mainline for uspace/lib/drv/generic/driver.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/lib/drv/generic/driver.c
r554debd r96b02eb9 254 254 ipc_call_t call; 255 255 callid = async_get_call(&call); 256 ipcarg_t method = IPC_GET_METHOD(call);256 sysarg_t method = IPC_GET_METHOD(call); 257 257 int iface_idx; 258 258 … … 308 308 309 309 /* get the method of the remote interface */ 310 ipcarg_t iface_method_idx = IPC_GET_ARG1(call);310 sysarg_t iface_method_idx = IPC_GET_ARG1(call); 311 311 remote_iface_func_ptr_t iface_method_ptr = 312 312 get_remote_method(rem_iface, iface_method_idx); … … 346 346 { 347 347 /* Select interface */ 348 switch (( ipcarg_t) (IPC_GET_ARG1(*icall))) {348 switch ((sysarg_t) (IPC_GET_ARG1(*icall))) { 349 349 case DRIVER_DEVMAN: 350 350 /* handle PnP events from device manager */
Note:
See TracChangeset
for help on using the changeset viewer.