Commit 079933db authored by Sakari Ailus's avatar Sakari Ailus Committed by Mauro Carvalho Chehab

[media] v4l: flash led class: Fix of_node release in probe() error path

The sub-device's OF node was used (of_node_get()) if it was set, but
device's OF node was always put. Fix this.
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent c762ff1f
...@@ -638,7 +638,7 @@ struct v4l2_flash *v4l2_flash_init( ...@@ -638,7 +638,7 @@ struct v4l2_flash *v4l2_flash_init(
v4l2_flash->iled_cdev = iled_cdev; v4l2_flash->iled_cdev = iled_cdev;
v4l2_flash->ops = ops; v4l2_flash->ops = ops;
sd->dev = dev; sd->dev = dev;
sd->of_node = of_node; sd->of_node = of_node ? of_node : led_cdev->dev->of_node;
v4l2_subdev_init(sd, &v4l2_flash_subdev_ops); v4l2_subdev_init(sd, &v4l2_flash_subdev_ops);
sd->internal_ops = &v4l2_flash_subdev_internal_ops; sd->internal_ops = &v4l2_flash_subdev_internal_ops;
sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE; sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
...@@ -654,10 +654,7 @@ struct v4l2_flash *v4l2_flash_init( ...@@ -654,10 +654,7 @@ struct v4l2_flash *v4l2_flash_init(
if (ret < 0) if (ret < 0)
goto err_init_controls; goto err_init_controls;
if (sd->of_node) of_node_get(sd->of_node);
of_node_get(sd->of_node);
else
of_node_get(led_cdev->dev->of_node);
ret = v4l2_async_register_subdev(sd); ret = v4l2_async_register_subdev(sd);
if (ret < 0) if (ret < 0)
...@@ -666,7 +663,7 @@ struct v4l2_flash *v4l2_flash_init( ...@@ -666,7 +663,7 @@ struct v4l2_flash *v4l2_flash_init(
return v4l2_flash; return v4l2_flash;
err_async_register_sd: err_async_register_sd:
of_node_put(led_cdev->dev->of_node); of_node_put(sd->of_node);
v4l2_ctrl_handler_free(sd->ctrl_handler); v4l2_ctrl_handler_free(sd->ctrl_handler);
err_init_controls: err_init_controls:
media_entity_cleanup(&sd->entity); media_entity_cleanup(&sd->entity);
...@@ -688,10 +685,7 @@ void v4l2_flash_release(struct v4l2_flash *v4l2_flash) ...@@ -688,10 +685,7 @@ void v4l2_flash_release(struct v4l2_flash *v4l2_flash)
v4l2_async_unregister_subdev(sd); v4l2_async_unregister_subdev(sd);
if (sd->of_node) of_node_put(sd->of_node);
of_node_put(sd->of_node);
else
of_node_put(led_cdev->dev->of_node);
v4l2_ctrl_handler_free(sd->ctrl_handler); v4l2_ctrl_handler_free(sd->ctrl_handler);
media_entity_cleanup(&sd->entity); media_entity_cleanup(&sd->entity);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment