Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8dafb830 authored by Thierry Reding's avatar Thierry Reding
Browse files

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: default avatarThierry Reding <treding@nvidia.com>
parent b1d0b34b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;
}