@@ -35,7 +35,6 @@ enum iavf_status iavf_set_mac_type(struct iavf_hw *hw)
3535 status = IAVF_ERR_DEVICE_NOT_SUPPORTED ;
3636 }
3737
38- hw_dbg (hw , "found mac: %d, returns: %d\n" , hw -> mac .type , status );
3938 return status ;
4039}
4140
@@ -397,23 +396,6 @@ static enum iavf_status iavf_aq_get_set_rss_lut(struct iavf_hw *hw,
397396 return status ;
398397}
399398
400- /**
401- * iavf_aq_get_rss_lut
402- * @hw: pointer to the hardware structure
403- * @vsi_id: vsi fw index
404- * @pf_lut: for PF table set true, for VSI table set false
405- * @lut: pointer to the lut buffer provided by the caller
406- * @lut_size: size of the lut buffer
407- *
408- * get the RSS lookup table, PF or VSI type
409- **/
410- enum iavf_status iavf_aq_get_rss_lut (struct iavf_hw * hw , u16 vsi_id ,
411- bool pf_lut , u8 * lut , u16 lut_size )
412- {
413- return iavf_aq_get_set_rss_lut (hw , vsi_id , pf_lut , lut , lut_size ,
414- false);
415- }
416-
417399/**
418400 * iavf_aq_set_rss_lut
419401 * @hw: pointer to the hardware structure
@@ -472,19 +454,6 @@ iavf_status iavf_aq_get_set_rss_key(struct iavf_hw *hw, u16 vsi_id,
472454 return status ;
473455}
474456
475- /**
476- * iavf_aq_get_rss_key
477- * @hw: pointer to the hw struct
478- * @vsi_id: vsi fw index
479- * @key: pointer to key info struct
480- *
481- **/
482- enum iavf_status iavf_aq_get_rss_key (struct iavf_hw * hw , u16 vsi_id ,
483- struct iavf_aqc_get_set_rss_key_data * key )
484- {
485- return iavf_aq_get_set_rss_key (hw , vsi_id , key , false);
486- }
487-
488457/**
489458 * iavf_aq_set_rss_key
490459 * @hw: pointer to the hw struct
@@ -828,17 +797,3 @@ void iavf_vf_parse_hw_config(struct iavf_hw *hw,
828797 vsi_res ++ ;
829798 }
830799}
831-
832- /**
833- * iavf_vf_reset
834- * @hw: pointer to the hardware structure
835- *
836- * Send a VF_RESET message to the PF. Does not wait for response from PF
837- * as none will be forthcoming. Immediately after calling this function,
838- * the admin queue should be shut down and (optionally) reinitialized.
839- **/
840- enum iavf_status iavf_vf_reset (struct iavf_hw * hw )
841- {
842- return iavf_aq_send_msg_to_pf (hw , VIRTCHNL_OP_RESET_VF ,
843- 0 , NULL , 0 , NULL );
844- }
0 commit comments