* idpf_reset * @hw: pointer to the hardware structure * * Send a RESET message to the CPF. Does not wait for response from CPF * as none will be forthcoming. Immediately after calling this function, * the control queue should be shut down and (optionally) reinitialized. */
| 279 | * the control queue should be shut down and (optionally) reinitialized. |
| 280 | */ |
| 281 | int idpf_reset(struct idpf_hw *hw) |
| 282 | { |
| 283 | return idpf_send_msg_to_cp(hw, VIRTCHNL_OP_RESET_VF, |
| 284 | 0, NULL, 0); |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * idpf_get_set_rss_lut |
nothing calls this directly
no test coverage detected