diff options
author | Julia Lawall <Julia.Lawall@inria.fr> | 2020-09-29 15:14:42 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-11-16 10:31:07 +0100 |
commit | abeb97ec2ea2aaed37d242a4ea93d76fa8cc4b13 (patch) | |
tree | b425f829197dc6be30632210ec739af8eadf16c6 | |
parent | 107b2c9caf6d709f29fc29aa1170a39a11e0a1c7 (diff) | |
download | linux-abeb97ec2ea2aaed37d242a4ea93d76fa8cc4b13.tar.gz linux-abeb97ec2ea2aaed37d242a4ea93d76fa8cc4b13.tar.bz2 linux-abeb97ec2ea2aaed37d242a4ea93d76fa8cc4b13.zip |
media: exynos4-is: use semicolons rather than commas to separate statements
Replace commas with semicolons. Commas introduce unnecessary
variability in the code structure and are hard to see. 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: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
-rw-r--r-- | drivers/media/platform/exynos4-is/fimc-core.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/media/platform/exynos4-is/fimc-core.c b/drivers/media/platform/exynos4-is/fimc-core.c index 08d1f39a914c..db6e548fe08e 100644 --- a/drivers/media/platform/exynos4-is/fimc-core.c +++ b/drivers/media/platform/exynos4-is/fimc-core.c @@ -214,11 +214,13 @@ static int fimc_get_scaler_factor(u32 src, u32 tar, u32 *ratio, u32 *shift) while (sh--) { u32 tmp = 1 << sh; if (src >= tar * tmp) { - *shift = sh, *ratio = tmp; + *shift = sh; + *ratio = tmp; return 0; } } - *shift = 0, *ratio = 1; + *shift = 0; + *ratio = 1; return 0; } |