mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 10:44:14 +08:00
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
@ -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)))
|
||||
return 0;
|
||||
}
|
||||
if (!times) {
|
||||
if (times < 0) {
|
||||
pr_err("QAT: wait_num_cycles time out\n");
|
||||
return -EFAULT;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user