Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/block/ata_bd/main.c

    rcde999a rb7fd2a0  
    4141#include "main.h"
    4242
    43 static int ata_dev_add(ddf_dev_t *dev);
    44 static int ata_dev_remove(ddf_dev_t *dev);
    45 static int ata_dev_gone(ddf_dev_t *dev);
    46 static int ata_fun_online(ddf_fun_t *fun);
    47 static int ata_fun_offline(ddf_fun_t *fun);
     43static errno_t ata_dev_add(ddf_dev_t *dev);
     44static errno_t ata_dev_remove(ddf_dev_t *dev);
     45static errno_t ata_dev_gone(ddf_dev_t *dev);
     46static errno_t ata_fun_online(ddf_fun_t *fun);
     47static errno_t ata_fun_offline(ddf_fun_t *fun);
    4848
    4949static void ata_bd_connection(ipc_callid_t, ipc_call_t *, void *);
     
    6262};
    6363
    64 static int ata_get_res(ddf_dev_t *dev, ata_base_t *ata_res)
     64static errno_t ata_get_res(ddf_dev_t *dev, ata_base_t *ata_res)
    6565{
    6666        async_sess_t *parent_sess;
    6767        hw_res_list_parsed_t hw_res;
    68         int rc;
     68        errno_t rc;
    6969
    7070        parent_sess = ddf_dev_parent_sess_get(dev);
     
    108108 * @return     EOK on success or an error code.
    109109 */
    110 static int ata_dev_add(ddf_dev_t *dev)
     110static errno_t ata_dev_add(ddf_dev_t *dev)
    111111{
    112112        ata_ctrl_t *ctrl;
    113113        ata_base_t res;
    114         int rc;
     114        errno_t rc;
    115115
    116116        rc = ata_get_res(dev, &res);
     
    151151}
    152152
    153 int ata_fun_create(disk_t *disk)
     153errno_t ata_fun_create(disk_t *disk)
    154154{
    155155        ata_ctrl_t *ctrl = disk->ctrl;
    156         int rc;
     156        errno_t rc;
    157157        char *fun_name = NULL;
    158158        ddf_fun_t *fun = NULL;
     
    212212}
    213213
    214 int ata_fun_remove(disk_t *disk)
    215 {
    216         int rc;
     214errno_t ata_fun_remove(disk_t *disk)
     215{
     216        errno_t rc;
    217217        char *fun_name;
    218218
     
    250250}
    251251
    252 int ata_fun_unbind(disk_t *disk)
    253 {
    254         int rc;
     252errno_t ata_fun_unbind(disk_t *disk)
     253{
     254        errno_t rc;
    255255        char *fun_name;
    256256
     
    282282}
    283283
    284 static int ata_dev_remove(ddf_dev_t *dev)
     284static errno_t ata_dev_remove(ddf_dev_t *dev)
    285285{
    286286        ata_ctrl_t *ctrl = (ata_ctrl_t *)ddf_dev_data_get(dev);
     
    291291}
    292292
    293 static int ata_dev_gone(ddf_dev_t *dev)
     293static errno_t ata_dev_gone(ddf_dev_t *dev)
    294294{
    295295        ata_ctrl_t *ctrl = (ata_ctrl_t *)ddf_dev_data_get(dev);
     
    300300}
    301301
    302 static int ata_fun_online(ddf_fun_t *fun)
     302static errno_t ata_fun_online(ddf_fun_t *fun)
    303303{
    304304        ddf_msg(LVL_DEBUG, "ata_fun_online()");
     
    306306}
    307307
    308 static int ata_fun_offline(ddf_fun_t *fun)
     308static errno_t ata_fun_offline(ddf_fun_t *fun)
    309309{
    310310        ddf_msg(LVL_DEBUG, "ata_fun_offline()");
Note: See TracChangeset for help on using the changeset viewer.