]> git.droids-corp.org - dpdk.git/blobdiff - drivers/common/qat/qat_pf2vf.c
crypto/cnxk: move IPsec SA creation to common
[dpdk.git] / drivers / common / qat / qat_pf2vf.c
index 63273111998c6c325e706d9c8f8954494678c9f9..4e9ffc72fcbf5316c37cb890c8ca6c15d5c6dd2b 100644 (file)
@@ -54,14 +54,12 @@ int qat_pf2vf_exch_msg(struct qat_pci_device *qat_dev,
                msg |= ADF_PFVF_INT | ADF_PFVF_MSGORIGIN_SYSTEM;
 
                ADF_CSR_WR(pmisc_bar_addr, vf_csr_off, msg);
-               int us = 0;
                /*
                 * Wait for confirmation from remote that it received
                 * the message
                 */
                do {
                        rte_delay_us_sleep(5);
-                       us += 5;
                        val = ADF_CSR_RD(pmisc_bar_addr, vf_csr_off);
                } while ((val & ADF_PFVF_INT) &&
                        (++count < ADF_IOV_MSG_ACK_MAX_RETRY));