Changes in uspace/drv/platform/msim/msim.c [19d2ce01:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/platform/msim/msim.c
r19d2ce01 rb7fd2a0 62 62 } msim_fun_t; 63 63 64 static int msim_dev_add(ddf_dev_t *dev);64 static errno_t msim_dev_add(ddf_dev_t *dev); 65 65 static void msim_init(void); 66 66 … … 152 152 } 153 153 154 static int msim_enable_interrupt(ddf_fun_t *fun, int irq)154 static errno_t msim_enable_interrupt(ddf_fun_t *fun, int irq) 155 155 { 156 156 /* Nothing to do. */ 157 157 158 return true;158 return EOK; 159 159 } 160 160 … … 186 186 187 187 ddf_fun_t *fnode = NULL; 188 int rc;188 errno_t rc; 189 189 190 190 /* Create new device. */ … … 238 238 * @return Zero on success or non-zero error code. 239 239 */ 240 static int msim_dev_add(ddf_dev_t *dev)240 static errno_t msim_dev_add(ddf_dev_t *dev) 241 241 { 242 242 ddf_msg(LVL_DEBUG, "msim_dev_add, device handle = %d",
Note:
See TracChangeset
for help on using the changeset viewer.