Commit 87a3fcf5 authored by Pavitrakumar M's avatar Pavitrakumar M Committed by Herbert Xu

crypto: spacc - Fixed return to CRYPTO_OK

Removed CRYPTO_USED_JB and returning CRYPTO_OK instead.
Signed-off-by: default avatarBhoomika K <bhoomikak@vayavyalabs.com>
Signed-off-by: default avatarPavitrakumar M <pavitrakumarm@vayavyalabs.com>
Acked-by: default avatarRuud Derwig <Ruud.Derwig@synopsys.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 58bf9910
......@@ -1103,7 +1103,7 @@ int spacc_packet_enqueue_ddt_ex(struct spacc_device *spacc, int use_jb,
{
int i;
struct spacc_job *job;
int ret = CRYPTO_OK, proc_len;
int proc_len;
if (job_idx < 0 || job_idx >= SPACC_MAX_JOBS)
return -ENXIO;
......@@ -1222,7 +1222,7 @@ int spacc_packet_enqueue_ddt_ex(struct spacc_device *spacc, int use_jb,
job->ctrl &= ~SPACC_CTRL_MASK(SPACC_CTRL_KEY_EXP);
}
return ret;
return CRYPTO_OK;
fifo_full:
/* try to add a job to the job buffers*/
......@@ -1248,7 +1248,7 @@ int spacc_packet_enqueue_ddt_ex(struct spacc_device *spacc, int use_jb,
spacc->jb_head = i;
return CRYPTO_USED_JB;
return CRYPTO_OK;
}
int spacc_packet_enqueue_ddt(struct spacc_device *spacc, int job_idx,
......
......@@ -333,8 +333,6 @@ enum {
#define SPACC_MAX_JOB_BUFFERS 192
#endif
#define CRYPTO_USED_JB 256
/* max DDT particle size */
#ifndef SPACC_MAX_PARTICLE_SIZE
#define SPACC_MAX_PARTICLE_SIZE 4096
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment