Changeset c5747fe in mainline for uspace/lib/libblock/libblock.c


Ignore:
Timestamp:
2009-05-18T17:16:24Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1090b8c
Parents:
687246b
Message:

Rename ramdisk protocol → block device protocol.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libblock/libblock.c

    r687246b rc5747fe  
    3838#include "libblock.h"
    3939#include "../../srv/vfs/vfs.h"
    40 #include "../../srv/rd/rd.h"
    4140#include <ipc/devmap.h>
     41#include <ipc/bd.h>
    4242#include <ipc/services.h>
    4343#include <errno.h>
     
    478478                        /* Refill the communication buffer with a new block. */
    479479                        ipcarg_t retval;
    480                         int rc = async_req_2_1(devcon->dev_phone, RD_READ_BLOCK,
     480                        int rc = async_req_2_1(devcon->dev_phone, BD_READ_BLOCK,
    481481                            *pos / block_size, block_size, &retval);
    482482                        if ((rc != EOK) || (retval != EOK))
Note: See TracChangeset for help on using the changeset viewer.