Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

-1
-1
drivers/gpu/drm/tegra/dsi.c
··· 1072 1072 struct tegra_dsi *dsi = host1x_client_to_dsi(client); 1073 1073 1074 1074 tegra_output_exit(&dsi->output); 1075 - regulator_disable(dsi->vdd); 1076 1075 1077 1076 return 0; 1078 1077 }