Commit b1aa6089 authored by Julia Lawall's avatar Julia Lawall Committed by Mauro Carvalho Chehab

[media] drivers/media/video/s5p-fimc/fimc-capture.c: adjust double test

Rewrite a duplicated test to test the correct value

The semantic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression E;
@@

(
* E
  || ... || E
|
* E
  && ... && E
)
// </smpl>
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Acked-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 53e5ab94
...@@ -693,7 +693,7 @@ static int fimc_pipeline_try_format(struct fimc_ctx *ctx, ...@@ -693,7 +693,7 @@ static int fimc_pipeline_try_format(struct fimc_ctx *ctx,
mf->code = 0; mf->code = 0;
continue; continue;
} }
if (mf->width != tfmt->width || mf->width != tfmt->width) { if (mf->width != tfmt->width || mf->height != tfmt->height) {
u32 fcc = ffmt->fourcc; u32 fcc = ffmt->fourcc;
tfmt->width = mf->width; tfmt->width = mf->width;
tfmt->height = mf->height; tfmt->height = mf->height;
...@@ -702,7 +702,8 @@ static int fimc_pipeline_try_format(struct fimc_ctx *ctx, ...@@ -702,7 +702,8 @@ static int fimc_pipeline_try_format(struct fimc_ctx *ctx,
NULL, &fcc, FIMC_SD_PAD_SOURCE); NULL, &fcc, FIMC_SD_PAD_SOURCE);
if (ffmt && ffmt->mbus_code) if (ffmt && ffmt->mbus_code)
mf->code = ffmt->mbus_code; mf->code = ffmt->mbus_code;
if (mf->width != tfmt->width || mf->width != tfmt->width) if (mf->width != tfmt->width ||
mf->height != tfmt->height)
continue; continue;
tfmt->code = mf->code; tfmt->code = mf->code;
} }
...@@ -710,7 +711,7 @@ static int fimc_pipeline_try_format(struct fimc_ctx *ctx, ...@@ -710,7 +711,7 @@ static int fimc_pipeline_try_format(struct fimc_ctx *ctx,
ret = v4l2_subdev_call(csis, pad, set_fmt, NULL, &sfmt); ret = v4l2_subdev_call(csis, pad, set_fmt, NULL, &sfmt);
if (mf->code == tfmt->code && if (mf->code == tfmt->code &&
mf->width == tfmt->width && mf->width == tfmt->width) mf->width == tfmt->width && mf->height == tfmt->height)
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment