From: Markus Elfring Date: Wed, 12 Oct 2016 09:22:23 +0000 (-0300) Subject: [media] DaVinci-VPFE-Capture: Move two assignments in vpfe_s_input() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=19d4695a4fbde30881ad9005e7f46e569b1fc911;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [media] DaVinci-VPFE-Capture: Move two assignments in vpfe_s_input() Move assignments for two local variables into an else branch so that their setting will only be performed after corresponding data processing succeeded by this function. Signed-off-by: Markus Elfring Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/davinci/vpfe_capture.c b/drivers/media/platform/davinci/vpfe_capture.c index ca044bf1c05c..86509d2f274a 100644 --- a/drivers/media/platform/davinci/vpfe_capture.c +++ b/drivers/media/platform/davinci/vpfe_capture.c @@ -1109,7 +1109,7 @@ static int vpfe_s_input(struct file *file, void *priv, unsigned int index) struct vpfe_subdev_info *sdinfo; int subdev_index, inp_index; struct vpfe_route *route; - u32 input = 0, output = 0; + u32 input, output; int ret; v4l2_dbg(1, debug, &vpfe_dev->v4l2_dev, "vpfe_s_input\n"); @@ -1142,6 +1142,9 @@ static int vpfe_s_input(struct file *file, void *priv, unsigned int index) if (route && sdinfo->can_route) { input = route->input; output = route->output; + } else { + input = 0; + output = 0; } if (sd)