mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
media: imx-mipi-csis: Fix clock handling in remove()
[ Upstream commit5705b0e0eb] The driver always calls mipi_csis_runtime_suspend() and mipi_csis_clk_disable() in remove(). This causes multiple WARNs from the kernel, as the clocks get disabled too many times. Fix the remove() to call mipi_csis_runtime_suspend() and mipi_csis_clk_disable() in a way that reverses what is done in probe(). Link: https://lore.kernel.org/r/20231122-imx-csis-v2-1-e44b8dc4cb66@ideasonboard.com Fixes:7807063b86("media: staging/imx7: add MIPI CSI-2 receiver subdev for i.MX7") Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
54ce93d7e6
commit
0e3535ee77
|
|
@ -1504,8 +1504,10 @@ static void mipi_csis_remove(struct platform_device *pdev)
|
|||
v4l2_async_nf_cleanup(&csis->notifier);
|
||||
v4l2_async_unregister_subdev(&csis->sd);
|
||||
|
||||
if (!pm_runtime_enabled(&pdev->dev))
|
||||
mipi_csis_runtime_suspend(&pdev->dev);
|
||||
|
||||
pm_runtime_disable(&pdev->dev);
|
||||
mipi_csis_runtime_suspend(&pdev->dev);
|
||||
mipi_csis_clk_disable(csis);
|
||||
v4l2_subdev_cleanup(&csis->sd);
|
||||
media_entity_cleanup(&csis->sd.entity);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user