| 391 | } |
| 392 | |
| 393 | static void |
| 394 | pl310_drain_writebuf(void) |
| 395 | { |
| 396 | |
| 397 | if ((pl310_softc == NULL) || !pl310_softc->sc_enabled) |
| 398 | return; |
| 399 | |
| 400 | PL310_LOCK(pl310_softc); |
| 401 | pl310_cache_sync(); |
| 402 | PL310_UNLOCK(pl310_softc); |
| 403 | } |
| 404 | |
| 405 | static void |
| 406 | pl310_set_way_sizes(struct pl310_softc *sc) |
nothing calls this directly
no test coverage detected