diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2005-11-05 02:06:26 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-01-09 17:15:39 -0500 |
commit | c8a19c91b5b488fed8cce04200a84c6a35c0bf0c (patch) | |
tree | e0296c60f7601c5a1d1cf5fa9afd0e38f92e6995 /drivers/crypto/padlock-aes.c | |
parent | 5cb1454b862ab3040b78364d58330262fea1ddba (diff) |
[CRYPTO] Allow AES C/ASM implementations to coexist
As the Crypto API now allows multiple implementations to be registered
for the same algorithm, we no longer have to play tricks with Kconfig
to select the right AES implementation.
This patch sets the driver name and priority for all the AES
implementations and removes the Kconfig conditions on the C implementation
for AES.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/padlock-aes.c')
-rw-r--r-- | drivers/crypto/padlock-aes.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/crypto/padlock-aes.c b/drivers/crypto/padlock-aes.c index 963e03dcb1ba..64819aa7cac4 100644 --- a/drivers/crypto/padlock-aes.c +++ b/drivers/crypto/padlock-aes.c | |||
@@ -466,6 +466,8 @@ static unsigned int aes_decrypt_cbc(const struct cipher_desc *desc, u8 *out, | |||
466 | 466 | ||
467 | static struct crypto_alg aes_alg = { | 467 | static struct crypto_alg aes_alg = { |
468 | .cra_name = "aes", | 468 | .cra_name = "aes", |
469 | .cra_driver_name = "aes-padlock", | ||
470 | .cra_priority = 300, | ||
469 | .cra_flags = CRYPTO_ALG_TYPE_CIPHER, | 471 | .cra_flags = CRYPTO_ALG_TYPE_CIPHER, |
470 | .cra_blocksize = AES_BLOCK_SIZE, | 472 | .cra_blocksize = AES_BLOCK_SIZE, |
471 | .cra_ctxsize = sizeof(struct aes_ctx), | 473 | .cra_ctxsize = sizeof(struct aes_ctx), |