| 232 | static int bcm_sdhost_get_ro(device_t, device_t); |
| 233 | |
| 234 | static inline uint32_t |
| 235 | RD4(struct bcm_sdhost_softc *sc, bus_size_t off) |
| 236 | { |
| 237 | uint32_t val; |
| 238 | |
| 239 | val = bus_space_read_4(sc->sc_bst, sc->sc_bsh, off); |
| 240 | |
| 241 | return (val); |
| 242 | } |
| 243 | |
| 244 | static inline void |
| 245 | WR4(struct bcm_sdhost_softc *sc, bus_size_t off, uint32_t val) |
no test coverage detected