Changeset b7fd2a0 in mainline for uspace/drv/intctl/obio/obio.c
- Timestamp:
- 2018-01-13T03:10:29Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/intctl/obio/obio.c
r36f0738 rb7fd2a0 114 114 115 115 /** Add OBIO device. */ 116 int obio_add(obio_t *obio, obio_res_t *res)116 errno_t obio_add(obio_t *obio, obio_res_t *res) 117 117 { 118 118 ddf_fun_t *fun_a = NULL; 119 int rc;119 errno_t rc; 120 120 121 121 rc = pio_enable((void *)res->base, OBIO_SIZE, (void **) &obio->regs); … … 155 155 156 156 /** Remove OBIO device */ 157 int obio_remove(obio_t *obio)157 errno_t obio_remove(obio_t *obio) 158 158 { 159 159 return ENOTSUP; … … 161 161 162 162 /** OBIO device gone */ 163 int obio_gone(obio_t *obio)163 errno_t obio_gone(obio_t *obio) 164 164 { 165 165 return ENOTSUP;
Note:
See TracChangeset
for help on using the changeset viewer.