diff options
Diffstat (limited to 'crypto/md4.c')
-rw-r--r-- | crypto/md4.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/crypto/md4.c b/crypto/md4.c index 9a1a228a0c69..2e7f2f319f95 100644 --- a/crypto/md4.c +++ b/crypto/md4.c | |||
@@ -216,9 +216,10 @@ static struct shash_alg alg = { | |||
216 | .final = md4_final, | 216 | .final = md4_final, |
217 | .descsize = sizeof(struct md4_ctx), | 217 | .descsize = sizeof(struct md4_ctx), |
218 | .base = { | 218 | .base = { |
219 | .cra_name = "md4", | 219 | .cra_name = "md4", |
220 | .cra_blocksize = MD4_HMAC_BLOCK_SIZE, | 220 | .cra_driver_name = "md4-generic", |
221 | .cra_module = THIS_MODULE, | 221 | .cra_blocksize = MD4_HMAC_BLOCK_SIZE, |
222 | .cra_module = THIS_MODULE, | ||
222 | } | 223 | } |
223 | }; | 224 | }; |
224 | 225 | ||