summaryrefslogtreecommitdiff
path: root/drivers/staging/media/atomisp/pci/atomisp_tpg.c
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2023-10-24 00:40:08 +0300
committerMauro Carvalho Chehab <mchehab@kernel.org>2023-11-23 20:23:14 +0300
commit9295e7e0cc38be1e99e330a0ccefa90569ffc91d (patch)
treeb11cb62cc9e7a1fa7e75963d751fd08f949bbafc /drivers/staging/media/atomisp/pci/atomisp_tpg.c
parentf4b7c07dc19f70ba8fb3f290f76f6199e8090795 (diff)
downloadlinux-9295e7e0cc38be1e99e330a0ccefa90569ffc91d.tar.xz
media: atomisp: Use accessors for pad config 'try_*' fields
The 'try_*' fields of the v4l2_subdev_pad_config structure are meant to be accessed through helper functions. Replace direct access with usage of the v4l2_subdev_get_pad_format(), v4l2_subdev_get_pad_crop() and v4l2_subdev_get_pad_compose() helpers. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/staging/media/atomisp/pci/atomisp_tpg.c')
-rw-r--r--drivers/staging/media/atomisp/pci/atomisp_tpg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/atomisp/pci/atomisp_tpg.c b/drivers/staging/media/atomisp/pci/atomisp_tpg.c
index 074826a5b706..b2376ebf45a1 100644
--- a/drivers/staging/media/atomisp/pci/atomisp_tpg.c
+++ b/drivers/staging/media/atomisp/pci/atomisp_tpg.c
@@ -47,7 +47,7 @@ static int tpg_set_fmt(struct v4l2_subdev *sd,
/* only raw8 grbg is supported by TPG */
fmt->code = MEDIA_BUS_FMT_SGRBG8_1X8;
if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
- sd_state->pads->try_fmt = *fmt;
+ *v4l2_subdev_get_pad_format(sd, sd_state, 0) = *fmt;
return 0;
}
return 0;