mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 11:03:43 +02:00
media: chips-media: wave5: Remove redundant ternary operators
For ternary operators in the form of a ? true : false, if a itself returns a boolean result, the ternary operator can be omitted. Remove redundant ternary operators to clean up the code. Signed-off-by: Liao Yuanhong <liaoyuanhong@vivo.com> Signed-off-by: Nicolas Dufresne <nicolas.dufresne@collabora.com> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
This commit is contained in:
parent
73d50aa92f
commit
9df928c90c
|
|
@ -543,7 +543,7 @@ static int wave5_vpu_enc_s_fmt_out(struct file *file, void *fh, struct v4l2_form
|
|||
if (!info)
|
||||
return -EINVAL;
|
||||
|
||||
inst->cbcr_interleave = (info->comp_planes == 2) ? true : false;
|
||||
inst->cbcr_interleave = info->comp_planes == 2;
|
||||
|
||||
switch (inst->src_fmt.pixelformat) {
|
||||
case V4L2_PIX_FMT_NV21:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user