aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/crypto_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/crypto_user.c b/crypto/crypto_user.c
index 748990fa3c53..2abca780312d 100644
--- a/crypto/crypto_user.c
+++ b/crypto/crypto_user.c
@@ -40,7 +40,6 @@ struct crypto_dump_info {
40 40
41static struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact) 41static struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact)
42{ 42{
43 int match;
44 struct crypto_alg *q, *alg = NULL; 43 struct crypto_alg *q, *alg = NULL;
45 44
46 down_read(&crypto_alg_sem); 45 down_read(&crypto_alg_sem);
@@ -49,6 +48,7 @@ static struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact)
49 return NULL; 48 return NULL;
50 49
51 list_for_each_entry(q, &crypto_alg_list, cra_list) { 50 list_for_each_entry(q, &crypto_alg_list, cra_list) {
51 int match = 0;
52 52
53 if ((q->cra_flags ^ p->cru_type) & p->cru_mask) 53 if ((q->cra_flags ^ p->cru_type) & p->cru_mask)
54 continue; 54 continue;