Skip to content

Commit ed4424f

Browse files
JuliaLawallherbertx
authored andcommitted
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>
1 parent 77450fd commit ed4424f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/crypto/atmel-tdes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ static void atmel_tdes_skcipher_alg_init(struct skcipher_alg *alg)
912912
{
913913
alg->base.cra_priority = ATMEL_TDES_PRIORITY;
914914
alg->base.cra_flags = CRYPTO_ALG_ASYNC;
915-
alg->base.cra_ctxsize = sizeof(struct atmel_tdes_ctx),
915+
alg->base.cra_ctxsize = sizeof(struct atmel_tdes_ctx);
916916
alg->base.cra_module = THIS_MODULE;
917917

918918
alg->init = atmel_tdes_init_tfm;

0 commit comments

Comments
 (0)