int otx_cptvf_check_pf_ready(struct otx_cptvf *cptvf)
 {
        struct otx_cpt_mbox mbx = {};
-       int ret;
 
        mbx.msg = OTX_CPT_MSG_READY;
-       ret = cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 
-       return ret;
+       return cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 }
 
 /*
 int otx_cptvf_send_vq_size_msg(struct otx_cptvf *cptvf)
 {
        struct otx_cpt_mbox mbx = {};
-       int ret;
 
        mbx.msg = OTX_CPT_MSG_QLEN;
        mbx.data = cptvf->qsize;
-       ret = cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 
-       return ret;
+       return cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 }
 
 /*
 int otx_cptvf_send_vf_priority_msg(struct otx_cptvf *cptvf)
 {
        struct otx_cpt_mbox mbx = {};
-       int ret;
 
        mbx.msg = OTX_CPT_MSG_VQ_PRIORITY;
        /* Convey group of the VF */
        mbx.data = cptvf->priority;
-       ret = cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 
-       return ret;
+       return cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 }
 
 /*
 int otx_cptvf_send_vf_up(struct otx_cptvf *cptvf)
 {
        struct otx_cpt_mbox mbx = {};
-       int ret;
 
        mbx.msg = OTX_CPT_MSG_VF_UP;
-       ret = cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 
-       return ret;
+       return cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 }
 
 /*
 int otx_cptvf_send_vf_down(struct otx_cptvf *cptvf)
 {
        struct otx_cpt_mbox mbx = {};
-       int ret;
 
        mbx.msg = OTX_CPT_MSG_VF_DOWN;
-       ret = cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 
-       return ret;
+       return cptvf_send_msg_to_pf_timeout(cptvf, &mbx);
 }