From 588d574eb9ce7198873439d8f6cffd2e336b0417 Mon Sep 17 00:00:00 2001 From: Martin Blumenstingl Date: Sat, 29 Feb 2020 21:17:21 +0100 Subject: lantiq: ltq-deu: fix compatibility with Linux 5.3+ Upstream commit 84ede58dfcd1d ("crypto: hash - remove CRYPTO_ALG_TYPE_DIGEST") drops the CRYPTO_ALG_TYPE_DIGEST define because it has the same value as CRYPTO_ALG_TYPE_HASH. This was the case for earlier kernels as well. Switch to CRYPTO_ALG_TYPE_HASH to fix building against Linux 5.4. Signed-off-by: Martin Blumenstingl --- package/kernel/lantiq/ltq-deu/src/ifxmips_md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/kernel/lantiq/ltq-deu/src/ifxmips_md5.c') diff --git a/package/kernel/lantiq/ltq-deu/src/ifxmips_md5.c b/package/kernel/lantiq/ltq-deu/src/ifxmips_md5.c index 55cea1ccee..11cb64799e 100644 --- a/package/kernel/lantiq/ltq-deu/src/ifxmips_md5.c +++ b/package/kernel/lantiq/ltq-deu/src/ifxmips_md5.c @@ -270,7 +270,7 @@ static struct shash_alg ifxdeu_md5_alg = { .cra_name = "md5", .cra_driver_name= "ifxdeu-md5", .cra_priority = 300, - .cra_flags = CRYPTO_ALG_TYPE_DIGEST, + .cra_flags = CRYPTO_ALG_TYPE_HASH, .cra_blocksize = MD5_HMAC_BLOCK_SIZE, .cra_module = THIS_MODULE, } -- cgit v1.2.3