Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat.c

    r3c11713 rffa2c8ef  
    3838
    3939#include "fat.h"
    40 #include <ipc/ipc.h>
    4140#include <ipc/services.h>
     41#include <ipc/ns.h>
    4242#include <async.h>
    4343#include <errno.h>
     
    5252vfs_info_t fat_vfs_info = {
    5353        .name = NAME,
     54        .concurrent_read_write = false,
     55        .write_retains_size = false,   
    5456};
    5557
     
    8284                 * created by IPC_M_CONNECT_TO_ME.
    8385                 */
    84                 ipc_answer_0(iid, EOK);
     86                async_answer_0(iid, EOK);
    8587        }
    8688       
     
    9193       
    9294                callid = async_get_call(&call);
    93                 switch  (IPC_GET_METHOD(call)) {
     95                switch  (IPC_GET_IMETHOD(call)) {
    9496                case IPC_M_PHONE_HUNGUP:
    9597                        return;
     
    134136                        break;
    135137                default:
    136                         ipc_answer_0(callid, ENOTSUP);
     138                        async_answer_0(callid, ENOTSUP);
    137139                        break;
    138140                }
     
    151153                goto err;
    152154
    153         vfs_phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_VFS, 0, 0);
     155        vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0);
    154156        if (vfs_phone < EOK) {
    155157                printf(NAME ": failed to connect to VFS\n");
Note: See TracChangeset for help on using the changeset viewer.