mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
crypto: atmel-tdes - use semicolons rather than commas to separate statements
Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // <smpl> @@ expression e1,e2; @@ e1 -, +; e2 ... when any // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
77450fd7cf
commit
ed4424f2fb
@ -912,7 +912,7 @@ static void atmel_tdes_skcipher_alg_init(struct skcipher_alg *alg)
|
||||
{
|
||||
alg->base.cra_priority = ATMEL_TDES_PRIORITY;
|
||||
alg->base.cra_flags = CRYPTO_ALG_ASYNC;
|
||||
alg->base.cra_ctxsize = sizeof(struct atmel_tdes_ctx),
|
||||
alg->base.cra_ctxsize = sizeof(struct atmel_tdes_ctx);
|
||||
alg->base.cra_module = THIS_MODULE;
|
||||
|
||||
alg->init = atmel_tdes_init_tfm;
|
||||
|
Loading…
Reference in New Issue
Block a user