mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-16 03:06:32 +07:00
media: staging: tegra-vde: Runtime PM is always available on Tegra
Runtime PM is always available on Tegra nowadays since commit 40b2bb1b13
("ARM: tegra: enforce PM requirement"), hence the case of unavailable RPM
doesn't need to be handled.
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
6f01dfb760
commit
c19c7a13ee
@ -1064,17 +1064,8 @@ static int tegra_vde_probe(struct platform_device *pdev)
|
||||
pm_runtime_use_autosuspend(dev);
|
||||
pm_runtime_set_autosuspend_delay(dev, 300);
|
||||
|
||||
if (!pm_runtime_enabled(dev)) {
|
||||
err = tegra_vde_runtime_resume(dev);
|
||||
if (err)
|
||||
goto err_misc_unreg;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
err_misc_unreg:
|
||||
misc_deregister(&vde->miscdev);
|
||||
|
||||
err_deinit_iommu:
|
||||
tegra_vde_iommu_deinit(vde);
|
||||
|
||||
@ -1089,13 +1080,6 @@ static int tegra_vde_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct tegra_vde *vde = platform_get_drvdata(pdev);
|
||||
struct device *dev = &pdev->dev;
|
||||
int err;
|
||||
|
||||
if (!pm_runtime_enabled(dev)) {
|
||||
err = tegra_vde_runtime_suspend(dev);
|
||||
if (err)
|
||||
return err;
|
||||
}
|
||||
|
||||
pm_runtime_dont_use_autosuspend(dev);
|
||||
pm_runtime_disable(dev);
|
||||
|
Loading…
Reference in New Issue
Block a user