Patch "media: platform: sunxi: sun6i-csi: fix error return code of sun6i_video_start_streaming()" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    media: platform: sunxi: sun6i-csi: fix error return code of sun6i_video_start_streaming()

to the 5.10-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-platform-sunxi-sun6i-csi-fix-error-return-code.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 5e3b9318a4a6acb93490bebe9f8db74e3dc2f08b
Author: Jia-Ju Bai <baijiaju1990@xxxxxxxxx>
Date:   Sat Mar 6 15:15:28 2021 +0100

    media: platform: sunxi: sun6i-csi: fix error return code of sun6i_video_start_streaming()
    
    [ Upstream commit f3d384e36630e2a552d874e422835606d9cf230a ]
    
    When sun6i_video_remote_subdev() returns NULL to subdev, no error return
    code of sun6i_video_start_streaming() is assigned.
    To fix this bug, ret is assigned with -EINVAL in this case.
    
    Reported-by: TOTE Robot <oslab@xxxxxxxxxxxxxxx>
    Signed-off-by: Jia-Ju Bai <baijiaju1990@xxxxxxxxx>
    Fixes: 5cc7522d8965 ("media: sun6i: Add support for Allwinner CSI V3s")
    Acked-by: Chen-Yu Tsai <wens@xxxxxxxx>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xxxxxxxxx>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c b/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c
index b55de9ab64d8..3181d0781b61 100644
--- a/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c
+++ b/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c
@@ -151,8 +151,10 @@ static int sun6i_video_start_streaming(struct vb2_queue *vq, unsigned int count)
 	}
 
 	subdev = sun6i_video_remote_subdev(video, NULL);
-	if (!subdev)
+	if (!subdev) {
+		ret = -EINVAL;
 		goto stop_media_pipeline;
+	}
 
 	config.pixelformat = video->fmt.fmt.pix.pixelformat;
 	config.code = video->mbus_code;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux