| 261 | #endif |
| 262 | |
| 263 | static inline uint8_t |
| 264 | RD1(struct bcm_sdhost_softc *sc, bus_size_t off) |
| 265 | { |
| 266 | uint32_t val; |
| 267 | |
| 268 | val = RD4(sc, off & ~3); |
| 269 | |
| 270 | return ((val >> (off & 3)*8) & 0xff); |
| 271 | } |
| 272 | |
| 273 | static inline void |
| 274 | WR2(struct bcm_sdhost_softc *sc, bus_size_t off, uint16_t val) |
no test coverage detected