summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/tegra/dsi.c
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2018-03-17 02:48:34 +0100
committerThierry Reding <treding@nvidia.com>2018-03-19 09:57:28 +0100
commit8dafb8301cae1a3fc8407f5da62b491bfcfdf04b (patch)
treea4b4e95a94bda7e96008969cace2a3abc677a95b /drivers/gpu/drm/tegra/dsi.c
parentb1d0b34b748c9e5e67a91c545cb48711cfde119c (diff)
downloadlinux-8dafb8301cae1a3fc8407f5da62b491bfcfdf04b.tar.bz2
drm/tegra: dsi: Don't disable regulator on ->exit()
The regulator is controlled as part of runtime PM, so it should not be additionally disabled from the ->exit() callback. Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/dsi.c')
-rw-r--r--drivers/gpu/drm/tegra/dsi.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/dsi.c b/drivers/gpu/drm/tegra/dsi.c
index 4d2ed966f9e3..87c5d89bc9ba 100644
--- a/drivers/gpu/drm/tegra/dsi.c
+++ b/drivers/gpu/drm/tegra/dsi.c
@@ -1072,7 +1072,6 @@ static int tegra_dsi_exit(struct host1x_client *client)
struct tegra_dsi *dsi = host1x_client_to_dsi(client);
tegra_output_exit(&dsi->output);
- regulator_disable(dsi->vdd);
return 0;
}