crypto: qat - fix some timeout tests
Change the timeout condition since the times value would be -1 after running MAX_RETRY_TIMES. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Yang Pingchao <pingchao.yang@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
46621e6f84
commit
51d77dddff
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ static int qat_hal_wait_cycles(struct icp_qat_fw_loader_handle *handle,
|
||||||
if (elapsed_cycles >= 8 && !(csr & (1 << ACS_ABO_BITPOS)))
|
if (elapsed_cycles >= 8 && !(csr & (1 << ACS_ABO_BITPOS)))
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (!times) {
|
if (times < 0) {
|
||||||
pr_err("QAT: wait_num_cycles time out\n");
|
pr_err("QAT: wait_num_cycles time out\n");
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue