* idpf_ctlq_deinit - destroy all control queues * @hw: pointer to hw struct */
| 264 | * @hw: pointer to hw struct |
| 265 | */ |
| 266 | void idpf_ctlq_deinit(struct idpf_hw *hw) |
| 267 | { |
| 268 | struct idpf_ctlq_info *cq = NULL, *tmp = NULL; |
| 269 | |
| 270 | LIST_FOR_EACH_ENTRY_SAFE(cq, tmp, &hw->cq_list_head, |
| 271 | idpf_ctlq_info, cq_list) |
| 272 | idpf_ctlq_remove(hw, cq); |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * idpf_ctlq_send - send command to Control Queue (CTQ) |
no test coverage detected