* idpf_ctlq_remove - deallocate and remove specified control queue * @hw: pointer to hardware struct * @cq: pointer to control queue to be removed */
| 214 | * @cq: pointer to control queue to be removed |
| 215 | */ |
| 216 | void idpf_ctlq_remove(struct idpf_hw *hw, |
| 217 | struct idpf_ctlq_info *cq) |
| 218 | { |
| 219 | LIST_REMOVE(cq, cq_list); |
| 220 | idpf_ctlq_shutdown(hw, cq); |
| 221 | idpf_free(hw, cq); |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * idpf_ctlq_init - main initialization routine for all control queues |
no test coverage detected