Re: [PATCH 06/18] hwrng: iproc-rng200 - use semicolons rather than commas to separate statements

2020-09-27 Thread Florian Fainelli
On 9/27/2020 12:12 PM, Julia Lawall wrote: Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // @@ expression e1,e2; @@ e1 -, +; e2 ... when any // Signed-off-by: Julia Lawall Acked-by: Florian

Re: [PATCH 00/18] use semicolons rather than commas to separate statements

2020-09-27 Thread Joe Perches
On Sun, 2020-09-27 at 21:12 +0200, Julia Lawall wrote: > These patches replace commas by semicolons. This was done using the > Coccinelle semantic patch (http://coccinelle.lip6.fr/) shown below. > > This semantic patch ensures that commas inside for loop headers will not be > transformed. It als

[PATCH 17/18] crypto: atmel-tdes - use semicolons rather than commas to separate statements

2020-09-27 Thread Julia Lawall
Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // @@ expression e1,e2; @@ e1 -, +; e2 ... when any // Signed-off-by: Julia Lawall --- drivers/crypto/atmel-tdes.c |2 +- 1 file changed, 1 inse

[PATCH 06/18] hwrng: iproc-rng200 - use semicolons rather than commas to separate statements

2020-09-27 Thread Julia Lawall
Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // @@ expression e1,e2; @@ e1 -, +; e2 ... when any // Signed-off-by: Julia Lawall --- drivers/char/hw_random/iproc-rng200.c |8 1 file

[PATCH 07/18] hwrng: mxc-rnga - use semicolons rather than commas to separate statements

2020-09-27 Thread Julia Lawall
Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // @@ expression e1,e2; @@ e1 -, +; e2 ... when any // Signed-off-by: Julia Lawall --- drivers/char/hw_random/mxc-rnga.c |6 +++--- 1 file chang

[PATCH 13/18] crypto: use semicolons rather than commas to separate statements

2020-09-27 Thread Julia Lawall
Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // @@ expression e1,e2; @@ e1 -, +; e2 ... when any // Signed-off-by: Julia Lawall --- drivers/crypto/amcc/crypto4xx_alg.c |2 +- drivers/crypto

[PATCH 00/18] use semicolons rather than commas to separate statements

2020-09-27 Thread Julia Lawall
These patches replace commas by semicolons. This was done using the Coccinelle semantic patch (http://coccinelle.lip6.fr/) shown below. This semantic patch ensures that commas inside for loop headers will not be transformed. It also doesn't touch macro definitions. Coccinelle ensures that brace

[PATCH 04/18] hwrng: stm32 - use semicolons rather than commas to separate statements

2020-09-27 Thread Julia Lawall
Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // @@ expression e1,e2; @@ e1 -, +; e2 ... when any // Signed-off-by: Julia Lawall --- drivers/char/hw_random/stm32-rng.c |8 1 file ch