| 115 | } |
| 116 | |
| 117 | static inline void |
| 118 | ccp_write_queue_4(struct ccp_softc *sc, unsigned queue, uint32_t offset, |
| 119 | uint32_t value) |
| 120 | { |
| 121 | ccp_write_4(sc, (CMD_Q_STATUS_INCR * (1 + queue)) + offset, value); |
| 122 | } |
| 123 | |
| 124 | void |
| 125 | ccp_queue_write_tail(struct ccp_queue *qp) |
no test coverage detected