Commit e3061836 authored by Jacopo Mondi's avatar Jacopo Mondi Committed by Laurent Pinchart

media: rcar-csi2: Disable runtime_pm in probe error

Disable pm_runtime in the probe() function error path.

Fixes: 769afd21 ("media: rcar-csi2: add Renesas R-Car MIPI CSI-2 receiver driver")
Signed-off-by: default avatarJacopo Mondi <jacopo.mondi@ideasonboard.com>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: default avatarNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Tested-by: default avatarNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Link: https://lore.kernel.org/r/20240617161135.130719-3-jacopo.mondi@ideasonboard.comSigned-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
parent 9caf253e
...@@ -1914,12 +1914,14 @@ static int rcsi2_probe(struct platform_device *pdev) ...@@ -1914,12 +1914,14 @@ static int rcsi2_probe(struct platform_device *pdev)
ret = v4l2_async_register_subdev(&priv->subdev); ret = v4l2_async_register_subdev(&priv->subdev);
if (ret < 0) if (ret < 0)
goto error_async; goto error_pm_runtime;
dev_info(priv->dev, "%d lanes found\n", priv->lanes); dev_info(priv->dev, "%d lanes found\n", priv->lanes);
return 0; return 0;
error_pm_runtime:
pm_runtime_disable(&pdev->dev);
error_async: error_async:
v4l2_async_nf_unregister(&priv->notifier); v4l2_async_nf_unregister(&priv->notifier);
v4l2_async_nf_cleanup(&priv->notifier); v4l2_async_nf_cleanup(&priv->notifier);
......
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