hwrng: stm32 - use semicolons rather than commas to separate statements
authorJulia Lawall <Julia.Lawall@inria.fr>
Sun, 27 Sep 2020 19:12:14 +0000 (21:12 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 2 Oct 2020 08:02:14 +0000 (18:02 +1000)
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>
drivers/char/hw_random/stm32-rng.c

index 38324c2ddda10873f9d9c384db1f43afa44980a3..bc22178f83e83ac80cd50677a63da2ef07995136 100644 (file)
@@ -145,12 +145,12 @@ static int stm32_rng_probe(struct platform_device *ofdev)
 
        dev_set_drvdata(dev, priv);
 
-       priv->rng.name = dev_driver_string(dev),
+       priv->rng.name = dev_driver_string(dev);
 #ifndef CONFIG_PM
-       priv->rng.init = stm32_rng_init,
-       priv->rng.cleanup = stm32_rng_cleanup,
+       priv->rng.init = stm32_rng_init;
+       priv->rng.cleanup = stm32_rng_cleanup;
 #endif
-       priv->rng.read = stm32_rng_read,
+       priv->rng.read = stm32_rng_read;
        priv->rng.priv = (unsigned long) dev;
        priv->rng.quality = 900;