media: stm32: dcmi: Drop always NULL sd_state from dcmi_pipeline_s_fmt()
authorMarek Vasut <marex@denx.de>
Sat, 18 Jun 2022 22:23:54 +0000 (23:23 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Mon, 27 Jun 2022 08:15:37 +0000 (09:15 +0100)
The second argument is always NULL, stop passing it to the function.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Alain Volmat <alain.volmat@foss.st.com>
Cc: Alexandre Torgue <alexandre.torgue@foss.st.com>
Cc: Amelie DELAUNAY <amelie.delaunay@foss.st.com>
Cc: Hugues FRUCHET <hugues.fruchet@foss.st.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Philippe CORNU <philippe.cornu@foss.st.com>
Cc: linux-stm32@st-md-mailman.stormreply.com
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/platform/st/stm32/stm32-dcmi.c

index 5f08ba47ea96bc3b095ed45200ead786584803f6..c604d672c21561aae1f446939313cd2485f17c44 100644 (file)
@@ -622,7 +622,6 @@ static struct media_entity *dcmi_find_source(struct stm32_dcmi *dcmi)
 }
 
 static int dcmi_pipeline_s_fmt(struct stm32_dcmi *dcmi,
-                              struct v4l2_subdev_state *sd_state,
                               struct v4l2_subdev_format *format)
 {
        struct media_entity *entity = &dcmi->source->entity;
@@ -664,7 +663,7 @@ static int dcmi_pipeline_s_fmt(struct stm32_dcmi *dcmi,
                        format->format.width, format->format.height);
 
                fmt.pad = pad->index;
-               ret = v4l2_subdev_call(subdev, pad, set_fmt, sd_state, &fmt);
+               ret = v4l2_subdev_call(subdev, pad, set_fmt, NULL, &fmt);
                if (ret < 0) {
                        dev_err(dcmi->dev, "%s: Failed to set format 0x%x %ux%u on \"%s\":%d pad (%d)\n",
                                __func__, format->format.code,
@@ -1115,7 +1114,7 @@ static int dcmi_set_fmt(struct stm32_dcmi *dcmi, struct v4l2_format *f)
        mf->width = sd_framesize.width;
        mf->height = sd_framesize.height;
 
-       ret = dcmi_pipeline_s_fmt(dcmi, NULL, &format);
+       ret = dcmi_pipeline_s_fmt(dcmi, &format);
        if (ret < 0)
                return ret;