Commit 5a0996af authored by Janani Sankara Babu's avatar Janani Sankara Babu Committed by Mauro Carvalho Chehab

media: Staging:media:imx Fix multiple assignments in a line

This patch solves multiple assignments warning shown by checkpatch
script.
Signed-off-by: default avatarJanani Sankara Babu <jananis37@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 854dca50
...@@ -1192,10 +1192,12 @@ static int csi_enum_frame_size(struct v4l2_subdev *sd, ...@@ -1192,10 +1192,12 @@ static int csi_enum_frame_size(struct v4l2_subdev *sd,
} else { } else {
crop = __csi_get_crop(priv, cfg, fse->which); crop = __csi_get_crop(priv, cfg, fse->which);
fse->min_width = fse->max_width = fse->index & 1 ? fse->min_width = fse->index & 1 ?
crop->width / 2 : crop->width; crop->width / 2 : crop->width;
fse->min_height = fse->max_height = fse->index & 2 ? fse->max_width = fse->min_width;
fse->min_height = fse->index & 2 ?
crop->height / 2 : crop->height; crop->height / 2 : crop->height;
fse->max_height = fse->min_height;
} }
mutex_unlock(&priv->lock); mutex_unlock(&priv->lock);
......
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