crypto: sahara - drop unnecessary default assignment

All possible code-paths will assign ret to suitable values so this
default value is not needed.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Nicholas Mc Guire 2015-02-07 06:16:46 -05:00 committed by Herbert Xu
parent 6cf02fcab1
commit df586cbb6b
1 changed files with 1 additions and 1 deletions

View File

@ -1047,7 +1047,7 @@ static int sahara_sha_process(struct ahash_request *req)
{
struct sahara_dev *dev = dev_ptr;
struct sahara_sha_reqctx *rctx = ahash_request_ctx(req);
int ret = -EINPROGRESS;
int ret;
unsigned long timeout;
ret = sahara_sha_prepare_request(req);