diff options
| author | Rob Clark <[email protected]> | 2021-12-15 17:59:02 +0000 |
|---|---|---|
| committer | Rob Clark <[email protected]> | 2021-12-16 17:51:25 +0000 |
| commit | f3d5d7cc23098ec1bdf76ca9188aa00021269d62 (patch) | |
| tree | e6551b9a8427d82d08eb286d62fb526fbdae0396 /drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | |
| parent | drm/msm/debugfs: Add display/kms state snapshot (diff) | |
| download | kernel-f3d5d7cc23098ec1bdf76ca9188aa00021269d62.tar.gz kernel-f3d5d7cc23098ec1bdf76ca9188aa00021269d62.zip | |
drm/msm: Don't use autosuspend for display
No functional change, as we only actually enable autosuspend for the GPU
device. But lets not encourage thinking that autosuspend is a good idea
for anything display related.
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Stephen Boyd <[email protected]>
Reviewed-by: Dmitry Baryshkov <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Baryshkov <[email protected]>
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/msm/dsi/phy/dsi_phy.c')
| -rw-r--r-- | drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c index 0b2ae5c15240..c2ed177717c7 100644 --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c @@ -602,7 +602,7 @@ static int dsi_phy_enable_resource(struct msm_dsi_phy *phy) static void dsi_phy_disable_resource(struct msm_dsi_phy *phy) { clk_disable_unprepare(phy->ahb_clk); - pm_runtime_put_autosuspend(&phy->pdev->dev); + pm_runtime_put(&phy->pdev->dev); } static const struct of_device_id dsi_phy_dt_match[] = { |
