| 325 | } |
| 326 | |
| 327 | static void |
| 328 | ti_sdhci_write_4(device_t dev, struct sdhci_slot *slot, bus_size_t off, |
| 329 | uint32_t val) |
| 330 | { |
| 331 | struct ti_sdhci_softc *sc = device_get_softc(dev); |
| 332 | |
| 333 | WR4(sc, off, val); |
| 334 | } |
| 335 | |
| 336 | static void |
| 337 | ti_sdhci_write_multi_4(device_t dev, struct sdhci_slot *slot, bus_size_t off, |
nothing calls this directly
no test coverage detected