media: v4l: subdev: v4l2_subdev_state_get_format always returns format now
authorSakari Ailus <sakari.ailus@linux.intel.com>
Fri, 13 Oct 2023 08:54:24 +0000 (10:54 +0200)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Thu, 23 Nov 2023 17:33:06 +0000 (18:33 +0100)
Now that v4l2_subdev_state_get_format() always returns format, don't call
alternative v4l2_subdev_get_pad_format() anymore.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/v4l2-core/v4l2-subdev.c

index a6f480e..9eef170 100644 (file)
@@ -1587,14 +1587,7 @@ int v4l2_subdev_get_fmt(struct v4l2_subdev *sd, struct v4l2_subdev_state *state,
 {
        struct v4l2_mbus_framefmt *fmt;
 
-       if (sd->flags & V4L2_SUBDEV_FL_STREAMS)
-               fmt = v4l2_subdev_state_get_format(state, format->pad,
-                                                  format->stream);
-       else if (format->pad < sd->entity.num_pads && format->stream == 0)
-               fmt = v4l2_subdev_get_pad_format(sd, state, format->pad);
-       else
-               fmt = NULL;
-
+       fmt = v4l2_subdev_state_get_format(state, format->pad, format->stream);
        if (!fmt)
                return -EINVAL;