*
  * Returns true if any VFs were reset, and false otherwise.
  */
-bool ice_reset_all_vfs(struct ice_pf *pf)
+void ice_reset_all_vfs(struct ice_pf *pf)
 {
        struct device *dev = ice_pf_to_dev(pf);
        struct ice_hw *hw = &pf->hw;
 
        /* If we don't have any VFs, then there is nothing to reset */
        if (!ice_has_vfs(pf))
-               return false;
+               return;
 
        mutex_lock(&pf->vfs.table_lock);
 
        /* If VFs have been disabled, there is no need to reset */
        if (test_and_set_bit(ICE_VF_DIS, pf->state)) {
                mutex_unlock(&pf->vfs.table_lock);
-               return false;
+               return;
        }
 
        /* Begin reset on all VFs at once */
        clear_bit(ICE_VF_DIS, pf->state);
 
        mutex_unlock(&pf->vfs.table_lock);
-
-       return true;
 }
 
 /**
 
 int
 ice_vf_clear_vsi_promisc(struct ice_vf *vf, struct ice_vsi *vsi, u8 promisc_m);
 bool ice_reset_vf(struct ice_vf *vf, bool is_vflr);
-bool ice_reset_all_vfs(struct ice_pf *pf);
+void ice_reset_all_vfs(struct ice_pf *pf);
 #else /* CONFIG_PCI_IOV */
 static inline struct ice_vf *ice_get_vf_by_id(struct ice_pf *pf, u16 vf_id)
 {
        return true;
 }
 
-static inline bool ice_reset_all_vfs(struct ice_pf *pf)
+static inline void ice_reset_all_vfs(struct ice_pf *pf)
 {
-       return true;
 }
 #endif /* !CONFIG_PCI_IOV */