Skip to content

Commit

Permalink
media: rzg2l-cru: csi2: Use rzg2l_csi2_formats array in enum_frame_size
Browse files Browse the repository at this point in the history
Make use of `rzg2l_csi2_formats` array in rzg2l_csi2_enum_frame_size() to
validate if the `fse->code` is supported.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Link: https://lore.kernel.org/r/20241018133446.223516-20-prabhakar.mahadev-lad.rj@bp.renesas.com
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
  • Loading branch information
Lad Prabhakar authored and Hans Verkuil committed Oct 22, 2024
1 parent f7b55b7 commit cd559c8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/media/platform/renesas/rzg2l-cru/rzg2l-csi2.c
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,9 @@ static int rzg2l_csi2_enum_frame_size(struct v4l2_subdev *sd,
if (fse->index != 0)
return -EINVAL;

if (!rzg2l_csi2_code_to_fmt(fse->code))
return -EINVAL;

fse->min_width = RZG2L_CSI2_MIN_WIDTH;
fse->min_height = RZG2L_CSI2_MIN_HEIGHT;
fse->max_width = RZG2L_CSI2_MAX_WIDTH;
Expand Down

0 comments on commit cd559c8

Please sign in to comment.