diff options
Diffstat (limited to 'drivers/net/ethernet/intel/iavf/iavf_common.c')
| -rw-r--r-- | drivers/net/ethernet/intel/iavf/iavf_common.c | 45 | 
1 files changed, 0 insertions, 45 deletions
| diff --git a/drivers/net/ethernet/intel/iavf/iavf_common.c b/drivers/net/ethernet/intel/iavf/iavf_common.c index dd11dbbd5551..1afd761d8052 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_common.c +++ b/drivers/net/ethernet/intel/iavf/iavf_common.c @@ -35,7 +35,6 @@ enum iavf_status iavf_set_mac_type(struct iavf_hw *hw)  		status = IAVF_ERR_DEVICE_NOT_SUPPORTED;  	} -	hw_dbg(hw, "found mac: %d, returns: %d\n", hw->mac.type, status);  	return status;  } @@ -398,23 +397,6 @@ static enum iavf_status iavf_aq_get_set_rss_lut(struct iavf_hw *hw,  }  /** - * iavf_aq_get_rss_lut - * @hw: pointer to the hardware structure - * @vsi_id: vsi fw index - * @pf_lut: for PF table set true, for VSI table set false - * @lut: pointer to the lut buffer provided by the caller - * @lut_size: size of the lut buffer - * - * get the RSS lookup table, PF or VSI type - **/ -enum iavf_status iavf_aq_get_rss_lut(struct iavf_hw *hw, u16 vsi_id, -				     bool pf_lut, u8 *lut, u16 lut_size) -{ -	return iavf_aq_get_set_rss_lut(hw, vsi_id, pf_lut, lut, lut_size, -				       false); -} - -/**   * iavf_aq_set_rss_lut   * @hw: pointer to the hardware structure   * @vsi_id: vsi fw index @@ -473,19 +455,6 @@ iavf_status iavf_aq_get_set_rss_key(struct iavf_hw *hw, u16 vsi_id,  }  /** - * iavf_aq_get_rss_key - * @hw: pointer to the hw struct - * @vsi_id: vsi fw index - * @key: pointer to key info struct - * - **/ -enum iavf_status iavf_aq_get_rss_key(struct iavf_hw *hw, u16 vsi_id, -				     struct iavf_aqc_get_set_rss_key_data *key) -{ -	return iavf_aq_get_set_rss_key(hw, vsi_id, key, false); -} - -/**   * iavf_aq_set_rss_key   * @hw: pointer to the hw struct   * @vsi_id: vsi fw index @@ -828,17 +797,3 @@ void iavf_vf_parse_hw_config(struct iavf_hw *hw,  		vsi_res++;  	}  } - -/** - * iavf_vf_reset - * @hw: pointer to the hardware structure - * - * Send a VF_RESET message to the PF. Does not wait for response from PF - * as none will be forthcoming. Immediately after calling this function, - * the admin queue should be shut down and (optionally) reinitialized. - **/ -enum iavf_status iavf_vf_reset(struct iavf_hw *hw) -{ -	return iavf_aq_send_msg_to_pf(hw, VIRTCHNL_OP_RESET_VF, -				      0, NULL, 0, NULL); -} | 
