Changeset 7bdcc45 in mainline for uspace/srv/fs/devfs/devfs_ops.c
- Timestamp:
- 2010-12-16T16:38:49Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7837101
- Parents:
- 8e58f94 (diff), eb221e5 (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/srv/fs/devfs/devfs_ops.c
r8e58f94 r7bdcc45 420 420 421 421 /* Accept the mount options */ 422 ipcarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0,422 sysarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0, 423 423 0, NULL); 424 424 if (retval != EOK) { … … 575 575 /* Make a request at the driver */ 576 576 ipc_call_t answer; 577 aid_t msg = async_send_3(dev->phone, IPC_GET_ METHOD(*request),577 aid_t msg = async_send_3(dev->phone, IPC_GET_IMETHOD(*request), 578 578 IPC_GET_ARG1(*request), IPC_GET_ARG2(*request), 579 579 IPC_GET_ARG3(*request), &answer); … … 584 584 585 585 /* Wait for reply from the driver. */ 586 ipcarg_t rc;586 sysarg_t rc; 587 587 async_wait_for(msg, &rc); 588 588 size_t bytes = IPC_GET_ARG1(answer); … … 638 638 /* Make a request at the driver */ 639 639 ipc_call_t answer; 640 aid_t msg = async_send_3(dev->phone, IPC_GET_ METHOD(*request),640 aid_t msg = async_send_3(dev->phone, IPC_GET_IMETHOD(*request), 641 641 IPC_GET_ARG1(*request), IPC_GET_ARG2(*request), 642 642 IPC_GET_ARG3(*request), &answer); … … 648 648 649 649 /* Wait for reply from the driver. */ 650 ipcarg_t rc;650 sysarg_t rc; 651 651 async_wait_for(msg, &rc); 652 652 size_t bytes = IPC_GET_ARG1(answer); … … 746 746 /* Make a request at the driver */ 747 747 ipc_call_t answer; 748 aid_t msg = async_send_2(dev->phone, IPC_GET_ METHOD(*request),748 aid_t msg = async_send_2(dev->phone, IPC_GET_IMETHOD(*request), 749 749 IPC_GET_ARG1(*request), IPC_GET_ARG2(*request), &answer); 750 750 … … 752 752 753 753 /* Wait for reply from the driver */ 754 ipcarg_t rc;754 sysarg_t rc; 755 755 async_wait_for(msg, &rc); 756 756
Note:
See TracChangeset
for help on using the changeset viewer.