Skip to content

Commit

Permalink
media: ipu3-cio2: Do not zero reserved fields
Browse files Browse the repository at this point in the history
Core code already clears reserved fields of struct v4l2_pix_format_mplane,
check commit 4e1e0eb ("media: v4l2-ioctl: Zero v4l2_plane_pix_format
reserved fields").

Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
  • Loading branch information
Ricardo Ribalda authored and Mauro Carvalho Chehab committed Feb 6, 2021
1 parent 7e76185 commit 0e34fe5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/media/pci/intel/ipu3/ipu3-cio2-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1094,12 +1094,9 @@ static int cio2_v4l2_try_fmt(struct file *file, void *fh, struct v4l2_format *f)
mpix->pixelformat = fmt->fourcc;
mpix->colorspace = V4L2_COLORSPACE_RAW;
mpix->field = V4L2_FIELD_NONE;
memset(mpix->reserved, 0, sizeof(mpix->reserved));
mpix->plane_fmt[0].bytesperline = cio2_bytesperline(mpix->width);
mpix->plane_fmt[0].sizeimage = mpix->plane_fmt[0].bytesperline *
mpix->height;
memset(mpix->plane_fmt[0].reserved, 0,
sizeof(mpix->plane_fmt[0].reserved));

/* use default */
mpix->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
Expand Down

0 comments on commit 0e34fe5

Please sign in to comment.