}
 
 /**
- * ice_vc_dis_vf - Disable a given VF via SW reset
+ * ice_vc_reset_vf - Perform software reset on the VF after informing the AVF
  * @vf: pointer to the VF info
- *
- * Disable the VF through a SW reset
  */
-static void ice_vc_dis_vf(struct ice_vf *vf)
+static void ice_vc_reset_vf(struct ice_vf *vf)
 {
        ice_vc_notify_vf_reset(vf);
        ice_reset_vf(vf, false);
        } else {
                /* request is successful, then reset VF */
                vf->num_req_qs = req_queues;
-               ice_vc_dis_vf(vf);
+               ice_vc_reset_vf(vf);
                dev_info(&pf->pdev->dev,
                         "VF %d granted request of %u queues.\n",
                         vf->vf_id, req_queues);
                    "MAC on VF %d set to %pM. VF driver will be reinitialized\n",
                    vf_id, mac);
 
-       ice_vc_dis_vf(vf);
+       ice_vc_reset_vf(vf);
        return ret;
 }
 
                return 0;
 
        vf->trusted = trusted;
-       ice_vc_dis_vf(vf);
+       ice_vc_reset_vf(vf);
        dev_info(&pf->pdev->dev, "VF %u is now %strusted\n",
                 vf_id, trusted ? "" : "un");