diff options
author | Thierry Reding <treding@nvidia.com> | 2018-03-17 04:48:34 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2018-03-19 11:57:28 +0300 |
commit | 8dafb8301cae1a3fc8407f5da62b491bfcfdf04b (patch) | |
tree | a4b4e95a94bda7e96008969cace2a3abc677a95b /drivers/gpu/drm/tegra/dsi.c | |
parent | b1d0b34b748c9e5e67a91c545cb48711cfde119c (diff) | |
download | linux-8dafb8301cae1a3fc8407f5da62b491bfcfdf04b.tar.xz |
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.c | 1 |
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; } |