aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/crypto')
-rw-r--r--drivers/crypto/amcc/crypto4xx_core.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/drivers/crypto/amcc/crypto4xx_core.c b/drivers/crypto/amcc/crypto4xx_core.c
index 857e35efedac..46e899ac924e 100644
--- a/drivers/crypto/amcc/crypto4xx_core.c
+++ b/drivers/crypto/amcc/crypto4xx_core.c
@@ -1144,25 +1144,6 @@ struct crypto4xx_alg_common crypto4xx_alg[] = {
1144 } 1144 }
1145 } 1145 }
1146 }}, 1146 }},
1147 /* Hash SHA1 */
1148 { .type = CRYPTO_ALG_TYPE_AHASH, .u.hash = {
1149 .init = crypto4xx_hash_init,
1150 .update = crypto4xx_hash_update,
1151 .final = crypto4xx_hash_final,
1152 .digest = crypto4xx_hash_digest,
1153 .halg.digestsize = SHA1_DIGEST_SIZE,
1154 .halg.base = {
1155 .cra_name = "sha1",
1156 .cra_driver_name = "sha1-ppc4xx",
1157 .cra_priority = CRYPTO4XX_CRYPTO_PRIORITY,
1158 .cra_flags = CRYPTO_ALG_ASYNC,
1159 .cra_blocksize = SHA1_BLOCK_SIZE,
1160 .cra_ctxsize = sizeof(struct crypto4xx_ctx),
1161 .cra_init = crypto4xx_sha1_alg_init,
1162 .cra_exit = crypto4xx_alg_exit,
1163 .cra_module = THIS_MODULE,
1164 }
1165 }},
1166}; 1147};
1167 1148
1168/** 1149/**