projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1d0b34
)
drm/tegra: dsi: Don't disable regulator on ->exit()
author
Thierry Reding
<treding@nvidia.com>
Sat, 17 Mar 2018 01:48:34 +0000
(
02:48
+0100)
committer
Thierry Reding
<treding@nvidia.com>
Mon, 19 Mar 2018 08:57:28 +0000
(09:57 +0100)
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>
drivers/gpu/drm/tegra/dsi.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/tegra/dsi.c
b/drivers/gpu/drm/tegra/dsi.c
index
4d2ed96
..
87c5d89
100644
(file)
--- 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;
}