Commit 47aff652 authored by Sachin Kamat's avatar Sachin Kamat Committed by Herbert Xu

crypto: mv_cesa - Staticize local symbols

Local symbols used only in this file are made static.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 82ad6bca
...@@ -907,7 +907,7 @@ static int mv_cra_hash_hmac_sha1_init(struct crypto_tfm *tfm) ...@@ -907,7 +907,7 @@ static int mv_cra_hash_hmac_sha1_init(struct crypto_tfm *tfm)
return mv_cra_hash_init(tfm, "sha1", COP_HMAC_SHA1, SHA1_BLOCK_SIZE); return mv_cra_hash_init(tfm, "sha1", COP_HMAC_SHA1, SHA1_BLOCK_SIZE);
} }
irqreturn_t crypto_int(int irq, void *priv) static irqreturn_t crypto_int(int irq, void *priv)
{ {
u32 val; u32 val;
...@@ -928,7 +928,7 @@ irqreturn_t crypto_int(int irq, void *priv) ...@@ -928,7 +928,7 @@ irqreturn_t crypto_int(int irq, void *priv)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
struct crypto_alg mv_aes_alg_ecb = { static struct crypto_alg mv_aes_alg_ecb = {
.cra_name = "ecb(aes)", .cra_name = "ecb(aes)",
.cra_driver_name = "mv-ecb-aes", .cra_driver_name = "mv-ecb-aes",
.cra_priority = 300, .cra_priority = 300,
...@@ -951,7 +951,7 @@ struct crypto_alg mv_aes_alg_ecb = { ...@@ -951,7 +951,7 @@ struct crypto_alg mv_aes_alg_ecb = {
}, },
}; };
struct crypto_alg mv_aes_alg_cbc = { static struct crypto_alg mv_aes_alg_cbc = {
.cra_name = "cbc(aes)", .cra_name = "cbc(aes)",
.cra_driver_name = "mv-cbc-aes", .cra_driver_name = "mv-cbc-aes",
.cra_priority = 300, .cra_priority = 300,
...@@ -975,7 +975,7 @@ struct crypto_alg mv_aes_alg_cbc = { ...@@ -975,7 +975,7 @@ struct crypto_alg mv_aes_alg_cbc = {
}, },
}; };
struct ahash_alg mv_sha1_alg = { static struct ahash_alg mv_sha1_alg = {
.init = mv_hash_init, .init = mv_hash_init,
.update = mv_hash_update, .update = mv_hash_update,
.final = mv_hash_final, .final = mv_hash_final,
...@@ -999,7 +999,7 @@ struct ahash_alg mv_sha1_alg = { ...@@ -999,7 +999,7 @@ struct ahash_alg mv_sha1_alg = {
} }
}; };
struct ahash_alg mv_hmac_sha1_alg = { static struct ahash_alg mv_hmac_sha1_alg = {
.init = mv_hash_init, .init = mv_hash_init,
.update = mv_hash_update, .update = mv_hash_update,
.final = mv_hash_final, .final = mv_hash_final,
......
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