Changes in uspace/srv/fs/fat/fat.c [228e490:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.c
r228e490 rffa2c8ef 38 38 39 39 #include "fat.h" 40 #include <ipc/ipc.h>41 40 #include <ipc/services.h> 41 #include <ipc/ns.h> 42 42 #include <async.h> 43 43 #include <errno.h> … … 84 84 * created by IPC_M_CONNECT_TO_ME. 85 85 */ 86 ipc_answer_0(iid, EOK);86 async_answer_0(iid, EOK); 87 87 } 88 88 … … 136 136 break; 137 137 default: 138 ipc_answer_0(callid, ENOTSUP);138 async_answer_0(callid, ENOTSUP); 139 139 break; 140 140 } … … 153 153 goto err; 154 154 155 vfs_phone = ipc_connect_me_to_blocking(PHONE_NS,SERVICE_VFS, 0, 0);155 vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0); 156 156 if (vfs_phone < EOK) { 157 157 printf(NAME ": failed to connect to VFS\n");
Note:
See TracChangeset
for help on using the changeset viewer.