| 212 | return (0); |
| 213 | } |
| 214 | int |
| 215 | ti_prcm_read_4(device_t dev, bus_addr_t addr, uint32_t *val) |
| 216 | { |
| 217 | struct ti_prcm_softc *sc; |
| 218 | |
| 219 | sc = device_get_softc(dev); |
| 220 | |
| 221 | *val = bus_space_read_4(sc->bst, sc->bsh, addr); |
| 222 | DPRINTF(sc->dev, "offset=%lx Read %x\n", addr, *val); |
| 223 | return (0); |
| 224 | } |
| 225 | |
| 226 | int |
| 227 | ti_prcm_modify_4(device_t dev, bus_addr_t addr, uint32_t clr, uint32_t set) |
no test coverage detected