Staging: media: Remove multiple assignments

Remove multiple assignments by factorizing them.
Made a coccinelle script to match cases:
@@
identifier a,b;
constant c;
@@
-a=b=c;
+a=c;
+b=c;

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bhumika Goyal 2016-02-13 11:49:35 +05:30 committed by Greg Kroah-Hartman
parent c611d48e65
commit 12f2a7b900

View File

@ -1239,7 +1239,8 @@ static int isif_config_ycbcr(struct v4l2_subdev *sd, int mode)
* a lot of registers that we didn't touch * a lot of registers that we didn't touch
*/ */
/* start with all bits zero */ /* start with all bits zero */
ccdcfg = modeset = 0; ccdcfg = 0;
modeset = 0;
pix_fmt = isif_get_pix_fmt(format->code); pix_fmt = isif_get_pix_fmt(format->code);
if (pix_fmt < 0) { if (pix_fmt < 0) {
pr_debug("Invalid pix_fmt(input mode)\n"); pr_debug("Invalid pix_fmt(input mode)\n");