Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/ski-con/main.c

    rb7fd2a0 r6d15572  
    4242#define NAME  "ski-con"
    4343
    44 static errno_t ski_con_dev_add(ddf_dev_t *dev);
    45 static errno_t ski_con_dev_remove(ddf_dev_t *dev);
    46 static errno_t ski_con_dev_gone(ddf_dev_t *dev);
    47 static errno_t ski_con_fun_online(ddf_fun_t *fun);
    48 static errno_t ski_con_fun_offline(ddf_fun_t *fun);
     44static int ski_con_dev_add(ddf_dev_t *dev);
     45static int ski_con_dev_remove(ddf_dev_t *dev);
     46static int ski_con_dev_gone(ddf_dev_t *dev);
     47static int ski_con_fun_online(ddf_fun_t *fun);
     48static int ski_con_fun_offline(ddf_fun_t *fun);
    4949
    5050static driver_ops_t driver_ops = {
     
    6161};
    6262
    63 static errno_t ski_con_dev_add(ddf_dev_t *dev)
     63static int ski_con_dev_add(ddf_dev_t *dev)
    6464{
    6565        ski_con_t *ski_con;
     
    7777}
    7878
    79 static errno_t ski_con_dev_remove(ddf_dev_t *dev)
     79static int ski_con_dev_remove(ddf_dev_t *dev)
    8080{
    8181        ski_con_t *ski_con = (ski_con_t *)ddf_dev_data_get(dev);
     
    8686}
    8787
    88 static errno_t ski_con_dev_gone(ddf_dev_t *dev)
     88static int ski_con_dev_gone(ddf_dev_t *dev)
    8989{
    9090        ski_con_t *ski_con = (ski_con_t *)ddf_dev_data_get(dev);
     
    9595}
    9696
    97 static errno_t ski_con_fun_online(ddf_fun_t *fun)
     97static int ski_con_fun_online(ddf_fun_t *fun)
    9898{
    9999        ddf_msg(LVL_DEBUG, "ski_con_fun_online()");
     
    101101}
    102102
    103 static errno_t ski_con_fun_offline(ddf_fun_t *fun)
     103static int ski_con_fun_offline(ddf_fun_t *fun)
    104104{
    105105        ddf_msg(LVL_DEBUG, "ski_con_fun_offline()");
Note: See TracChangeset for help on using the changeset viewer.