Changeset 8f88beb in mainline for uspace/lib/c/generic/ddi.c
- Timestamp:
- 2012-11-25T21:34:07Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e1a27be
- Parents:
- 150a271 (diff), 7462674 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ddi.c
r150a271 r8f88beb 192 192 } 193 193 194 uint8_t pio_read_8( ioport8_t *reg)194 uint8_t pio_read_8(const ioport8_t *reg) 195 195 { 196 196 const uint8_t val = arch_pio_read_8(reg); … … 199 199 } 200 200 201 uint16_t pio_read_16( ioport16_t *reg)201 uint16_t pio_read_16(const ioport16_t *reg) 202 202 { 203 203 const uint16_t val = arch_pio_read_16(reg); … … 206 206 } 207 207 208 uint32_t pio_read_32( ioport32_t *reg)208 uint32_t pio_read_32(const ioport32_t *reg) 209 209 { 210 210 const uint32_t val = arch_pio_read_32(reg);
Note:
See TracChangeset
for help on using the changeset viewer.