media: vivid: fix assignment of dev->fbuf_out_flags
authorColin Ian King <colin.king@canonical.com>
Thu, 25 Feb 2021 15:43:27 +0000 (16:43 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 11 Mar 2021 10:59:44 +0000 (11:59 +0100)
Currently the chroma_flags and alpha_flags are being zero'd with a bit-wise
mask and the following statement should be bit-wise or'ing in the new flag
bits but instead is making a direct assignment.  Fix this by using the |=
operator rather than an assignment.

Addresses-Coverity: ("Unused value")

Fixes: ef834f7836ec ("[media] vivid: add the video capture and output parts")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/test-drivers/vivid/vivid-vid-out.c

index ac1e981..9f731f0 100644 (file)
@@ -1021,7 +1021,7 @@ int vivid_vid_out_s_fbuf(struct file *file, void *fh,
                return -EINVAL;
        }
        dev->fbuf_out_flags &= ~(chroma_flags | alpha_flags);
-       dev->fbuf_out_flags = a->flags & (chroma_flags | alpha_flags);
+       dev->fbuf_out_flags |= a->flags & (chroma_flags | alpha_flags);
        return 0;
 }