| 424 | } |
| 425 | |
| 426 | int |
| 427 | idpf_adapter_deinit(struct idpf_adapter *adapter) |
| 428 | { |
| 429 | struct idpf_hw *hw = &adapter->hw; |
| 430 | |
| 431 | idpf_ctlq_deinit(hw); |
| 432 | rte_free(adapter->mbx_resp); |
| 433 | adapter->mbx_resp = NULL; |
| 434 | |
| 435 | return 0; |
| 436 | } |
| 437 | |
| 438 | int |
| 439 | idpf_vport_init(struct idpf_vport *vport, |
no test coverage detected