OSDN Git Service

media: ti-vpe: cal: handle cal_ctx_v4l2_register error
authorTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Mon, 14 Jun 2021 11:23:31 +0000 (13:23 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Mon, 12 Jul 2021 11:16:09 +0000 (13:16 +0200)
cal_async_notifier_complete() doesn't handle errors returned from
cal_ctx_v4l2_register(). Add the error handling.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/ti-vpe/cal.c

index 2d05fb3..3a83681 100644 (file)
@@ -740,15 +740,33 @@ static int cal_async_notifier_complete(struct v4l2_async_notifier *notifier)
 {
        struct cal_dev *cal = container_of(notifier, struct cal_dev, notifier);
        unsigned int i;
-       int ret = 0;
+       int ret;
 
        for (i = 0; i < ARRAY_SIZE(cal->ctx); ++i) {
-               if (cal->ctx[i])
-                       cal_ctx_v4l2_register(cal->ctx[i]);
+               if (!cal->ctx[i])
+                       continue;
+
+               ret = cal_ctx_v4l2_register(cal->ctx[i]);
+               if (ret)
+                       goto err_ctx_unreg;
        }
 
-       if (cal_mc_api)
-               ret = v4l2_device_register_subdev_nodes(&cal->v4l2_dev);
+       if (!cal_mc_api)
+               return 0;
+
+       ret = v4l2_device_register_subdev_nodes(&cal->v4l2_dev);
+       if (ret)
+               goto err_ctx_unreg;
+
+       return 0;
+
+err_ctx_unreg:
+       for (; i > 0; --i) {
+               if (!cal->ctx[i - 1])
+                       continue;
+
+               cal_ctx_v4l2_unregister(cal->ctx[i - 1]);
+       }
 
        return ret;
 }