* ti_sdma_write_4 - writes a 32-bit value to one of the DMA registers * @sc: DMA device context * @off: The offset of a register from the DMA register address range * * * RETURNS: * 32-bit value read from the register. */
| 173 | * 32-bit value read from the register. |
| 174 | */ |
| 175 | static inline void |
| 176 | ti_sdma_write_4(struct ti_sdma_softc *sc, bus_size_t off, uint32_t val) |
| 177 | { |
| 178 | bus_write_4(sc->sc_mem_res, off, val); |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * ti_sdma_is_omap3_rev - returns true if H/W is from OMAP3 series |
no outgoing calls
no test coverage detected