Changeset 5a6cc679 in mainline for uspace/drv/platform/msim


Ignore:
Timestamp:
2018-01-31T02:21:24Z (8 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0a9cc2
Parents:
132ab5d1
Message:

Merge commit '50f19b7ee8e94570b5c63896736c4eb49cfa18db' into forwardport

Not all ints are converted to errno_t in xhci tree yet, however it compiles and works :)

File:
1 edited

Legend:

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

    r132ab5d1 r5a6cc679  
    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.