Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/platform/msim/msim.c

    r1569a9b rb7fd2a0  
    6262} msim_fun_t;
    6363
    64 static int msim_dev_add(ddf_dev_t *dev);
     64static errno_t msim_dev_add(ddf_dev_t *dev);
    6565static void msim_init(void);
    6666
     
    152152}
    153153
    154 static int msim_enable_interrupt(ddf_fun_t *fun, int irq)
     154static errno_t msim_enable_interrupt(ddf_fun_t *fun, int irq)
    155155{
    156156        /* Nothing to do. */
     
    186186       
    187187        ddf_fun_t *fnode = NULL;
    188         int rc;
     188        errno_t rc;
    189189       
    190190        /* Create new device. */
     
    238238 * @return Zero on success or non-zero error code.
    239239 */
    240 static int msim_dev_add(ddf_dev_t *dev)
     240static errno_t msim_dev_add(ddf_dev_t *dev)
    241241{
    242242        ddf_msg(LVL_DEBUG, "msim_dev_add, device handle = %d",
Note: See TracChangeset for help on using the changeset viewer.