X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=crypto%2Farc4.c;h=b78dcb390a7e2160271f34d07db85b0f3e73493e;hb=d6ebf5286f8f94a254a8c90d4b9f2a8b076a8634;hp=2233d36456e2715ff10dd4b7389d7db127574763;hpb=7545b6c2087f4ef0287c8c9b7eba6a728c67ff8e;p=platform%2Fkernel%2Flinux-rpi.git diff --git a/crypto/arc4.c b/crypto/arc4.c index 2233d36..b78dcb3 100644 --- a/crypto/arc4.c +++ b/crypto/arc4.c @@ -115,6 +115,7 @@ static int ecb_arc4_crypt(struct skcipher_request *req) static struct crypto_alg arc4_cipher = { .cra_name = "arc4", + .cra_driver_name = "arc4-generic", .cra_flags = CRYPTO_ALG_TYPE_CIPHER, .cra_blocksize = ARC4_BLOCK_SIZE, .cra_ctxsize = sizeof(struct arc4_ctx), @@ -132,6 +133,7 @@ static struct crypto_alg arc4_cipher = { static struct skcipher_alg arc4_skcipher = { .base.cra_name = "ecb(arc4)", + .base.cra_driver_name = "ecb(arc4)-generic", .base.cra_priority = 100, .base.cra_blocksize = ARC4_BLOCK_SIZE, .base.cra_ctxsize = sizeof(struct arc4_ctx),