* Return true if the given address does not fall on the alignment boundary. */
| 195 | * Return true if the given address does not fall on the alignment boundary. |
| 196 | */ |
| 197 | static bool |
| 198 | alignment_bounce(bus_dma_tag_t dmat, bus_addr_t addr) |
| 199 | { |
| 200 | |
| 201 | return ((addr & (dmat->common.alignment - 1)) != 0); |
| 202 | } |
| 203 | |
| 204 | static bool |
| 205 | might_bounce(bus_dma_tag_t dmat, bus_dmamap_t map, bus_addr_t paddr, |
no outgoing calls
no test coverage detected