Changes in uspace/drv/intctl/obio/obio.c [b7fd2a0:c1694b6b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/intctl/obio/obio.c
rb7fd2a0 rc1694b6b 114 114 115 115 /** Add OBIO device. */ 116 errno_t obio_add(obio_t *obio, obio_res_t *res)116 int obio_add(obio_t *obio, obio_res_t *res) 117 117 { 118 118 ddf_fun_t *fun_a = NULL; 119 errno_t rc;119 int rc; 120 120 121 121 rc = pio_enable((void *)res->base, OBIO_SIZE, (void **) &obio->regs); … … 155 155 156 156 /** Remove OBIO device */ 157 errno_t obio_remove(obio_t *obio)157 int obio_remove(obio_t *obio) 158 158 { 159 159 return ENOTSUP; … … 161 161 162 162 /** OBIO device gone */ 163 errno_t obio_gone(obio_t *obio)163 int obio_gone(obio_t *obio) 164 164 { 165 165 return ENOTSUP;
Note:
See TracChangeset
for help on using the changeset viewer.