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

Commit 60eba1e7 authored by Dhaval Patel's avatar Dhaval Patel
Browse files

msm: mdss: dsi: fix post clk off callback in clk manager



DSI clock manager is registering the post clk on twice
but does not register the post clk off. CORE/CTRL/PHY
power modules were never turned off because post clk
off callback is not registered.

Change-Id: I324e416241d9ec72e0aef8c4742849c14cffc37e
Signed-off-by: default avatarDhaval Patel <pdhaval@codeaurora.org>
parent 32829884
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -857,7 +857,7 @@ void *mdss_dsi_clk_init(struct mdss_dsi_clk_info *info)
	mngr->pre_clkon_cb = info->pre_clkon_cb;
	mngr->post_clkon_cb = info->post_clkon_cb;
	mngr->pre_clkoff_cb = info->pre_clkoff_cb;
	mngr->post_clkon_cb = info->post_clkon_cb;
	mngr->post_clkoff_cb = info->post_clkoff_cb;
	mngr->priv_data = info->priv_data;
	memcpy(mngr->name, info->name, DSI_CLK_NAME_LEN);
error: