From: Joachim Fritschi Date: Tue, 20 Jun 2006 10:39:29 +0000 (+1000) Subject: [CRYPTO] twofish: Fix the priority X-Git-Tag: v2.6.19-rc1~1297^2~61 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=758f570ea785a5fbcdca026dfab2e9e1a3f89726;p=linux.git [CRYPTO] twofish: Fix the priority This patch adds a proper driver name and priority to the generic c implemtation to allow coexistance of c and assembler modules. Signed-off-by: Joachim Fritschi Signed-off-by: Herbert Xu --- diff --git a/crypto/twofish.c b/crypto/twofish.c index e3b3a0a6cb4d..4979a2be48a9 100644 --- a/crypto/twofish.c +++ b/crypto/twofish.c @@ -181,6 +181,8 @@ static void twofish_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) static struct crypto_alg alg = { .cra_name = "twofish", + .cra_driver_name = "twofish-generic", + .cra_priority = 100, .cra_flags = CRYPTO_ALG_TYPE_CIPHER, .cra_blocksize = TF_BLOCK_SIZE, .cra_ctxsize = sizeof(struct twofish_ctx),