This is a note to let you know that I've just added the patch titled media: ccs: Correctly initialise try compose rectangle to the 5.15-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: media-ccs-correctly-initialise-try-compose-rectangle.patch and it can be found in the queue-5.15 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 724ff68e968b19d786870d333f9952bdd6b119cb Mon Sep 17 00:00:00 2001 From: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> Date: Mon, 4 Sep 2023 15:57:37 +0300 Subject: media: ccs: Correctly initialise try compose rectangle From: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> commit 724ff68e968b19d786870d333f9952bdd6b119cb upstream. Initialise the try sink compose rectangle size to the sink compose rectangle for binner and scaler sub-devices. This was missed due to the faulty condition that lead to the compose rectangles to be initialised for the pixel array sub-device where it is not relevant. Fixes: ccfc97bdb5ae ("[media] smiapp: Add driver") Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> Reviewed-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> Signed-off-by: Hans Verkuil <hverkuil-cisco@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/media/i2c/ccs/ccs-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/media/i2c/ccs/ccs-core.c +++ b/drivers/media/i2c/ccs/ccs-core.c @@ -3089,7 +3089,7 @@ static int ccs_open(struct v4l2_subdev * try_fmt->code = sensor->internal_csi_format->code; try_fmt->field = V4L2_FIELD_NONE; - if (ssd != sensor->pixel_array) + if (ssd == sensor->pixel_array) continue; try_comp = v4l2_subdev_get_try_compose(sd, fh->state, i); Patches currently in stable-queue which might be from sakari.ailus@xxxxxxxxxxxxxxx are queue-5.15/media-ccs-fix-driver-quirk-struct-documentation.patch queue-5.15/media-cadence-csi2rx-unregister-v4l2-async-notifier.patch queue-5.15/media-ccs-correctly-initialise-try-compose-rectangle.patch queue-5.15/media-v4l-async-rename-async-nf-functions-clean-up-l.patch queue-5.15/media-rcar-vin-refactor-controls-creation-for-video-.patch queue-5.15/media-rcar-vin-move-group-async-notifier.patch queue-5.15/media-rcar-vin-improve-async-notifier-cleanup-paths.patch queue-5.15/media-rcar-vin-rename-array-storing-subdevice-inform.patch