]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
media: exynos4-is: Fix nullptr when no CSIS device present
authorJonathan Bakker <xc-racer2@live.ca>
Thu, 30 Jul 2020 23:01:06 +0000 (01:01 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 1 Sep 2020 12:13:25 +0000 (14:13 +0200)
Not all devices use the CSIS device, some may use the FIMC directly in
which case the CSIS device isn't registered.  This leads to a nullptr
exception when starting the stream as the CSIS device is always
referenced.  Instead, if getting the CSIS device fails, try getting the
FIMC directly to check if we are using the subdev API

Signed-off-by: Jonathan Bakker <xc-racer2@live.ca>
Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/exynos4-is/media-dev.c

index ae74d8f72d297eadda0e6500e426ec93148e59e9..aae584f9770d53a3db6507a9f541dcf47a8eb68c 100644 (file)
@@ -290,11 +290,26 @@ static int __fimc_pipeline_s_stream(struct exynos_media_pipeline *ep, bool on)
                { IDX_CSIS, IDX_FLITE, IDX_FIMC, IDX_SENSOR, IDX_IS_ISP },
        };
        struct fimc_pipeline *p = to_fimc_pipeline(ep);
-       struct fimc_md *fmd = entity_to_fimc_mdev(&p->subdevs[IDX_CSIS]->entity);
        enum fimc_subdev_index sd_id;
        int i, ret = 0;
 
        if (p->subdevs[IDX_SENSOR] == NULL) {
+               struct fimc_md *fmd;
+               struct v4l2_subdev *sd = p->subdevs[IDX_CSIS];
+
+               if (!sd)
+                       sd = p->subdevs[IDX_FIMC];
+
+               if (!sd) {
+                       /*
+                        * If neither CSIS nor FIMC was set up,
+                        * it's impossible to have any sensors
+                        */
+                       return -ENODEV;
+               }
+
+               fmd = entity_to_fimc_mdev(&sd->entity);
+
                if (!fmd->user_subdev_api) {
                        /*
                         * Sensor must be already discovered if we