summaryrefslogtreecommitdiffstats
path: root/package/kernel/lantiq/ltq-deu/src/ifxmips_arc4.c
diff options
context:
space:
mode:
authorMartin Schiller <mschiller@tdt.de>2016-08-18 12:03:17 +0200
committerJohn Crispin <john@phrozen.org>2016-08-20 05:33:09 +0200
commit070edfd92f8f83a93312a7df5f59048d74286584 (patch)
tree4de5631096240d062a879323964241d5ec605ed0 /package/kernel/lantiq/ltq-deu/src/ifxmips_arc4.c
parent93916613943ae095027f01acc521b4fcf174dea2 (diff)
downloadmaster-31e0f0ae-070edfd92f8f83a93312a7df5f59048d74286584.tar.gz
master-31e0f0ae-070edfd92f8f83a93312a7df5f59048d74286584.tar.bz2
master-31e0f0ae-070edfd92f8f83a93312a7df5f59048d74286584.zip
ltq-deu: fix cra_priority
With the default priority of 0, the DEU algos would be overlapped by the generic algos (if available). To fix this, set the cra_priority of the hardware algos to the recommended value of 300/400. Signed-off-by: Martin Schiller <mschiller@tdt.de>
Diffstat (limited to 'package/kernel/lantiq/ltq-deu/src/ifxmips_arc4.c')
-rw-r--r--package/kernel/lantiq/ltq-deu/src/ifxmips_arc4.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/package/kernel/lantiq/ltq-deu/src/ifxmips_arc4.c b/package/kernel/lantiq/ltq-deu/src/ifxmips_arc4.c
index ee56187eee..d0818dd0c4 100644
--- a/package/kernel/lantiq/ltq-deu/src/ifxmips_arc4.c
+++ b/package/kernel/lantiq/ltq-deu/src/ifxmips_arc4.c
@@ -242,6 +242,7 @@ static void arc4_crypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
static struct crypto_alg ifxdeu_arc4_alg = {
.cra_name = "arc4",
.cra_driver_name = "ifxdeu-arc4",
+ .cra_priority = 300,
.cra_flags = CRYPTO_ALG_TYPE_CIPHER,
.cra_blocksize = ARC4_BLOCK_SIZE,
.cra_ctxsize = sizeof(struct arc4_ctx),
@@ -324,6 +325,7 @@ static int ecb_arc4_decrypt(struct blkcipher_desc *desc,
static struct crypto_alg ifxdeu_ecb_arc4_alg = {
.cra_name = "ecb(arc4)",
.cra_driver_name = "ifxdeu-ecb(arc4)",
+ .cra_priority = 400,
.cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
.cra_blocksize = ARC4_BLOCK_SIZE,
.cra_ctxsize = sizeof(struct arc4_ctx),