mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-18 19:40:46 +09:00
video: tegra: don't assert/deassert reset in dc
There seems to be some interdependency between the two display controllers' resets and HDMI. If dc0 is put into reset while HDMI is connected to dc1, HDMI will blank. Change-Id: I978814628609ebe3d78e7809fccef6a3d19c0f7f Signed-off-by: Erik Gilling <konkers@android.com>
This commit is contained in:
@@ -828,7 +828,6 @@ static void _tegra_dc_enable(struct tegra_dc *dc)
|
||||
tegra_dc_setup_clk(dc, dc->clk);
|
||||
|
||||
clk_enable(dc->clk);
|
||||
tegra_periph_reset_deassert(dc->clk);
|
||||
enable_irq(dc->irq);
|
||||
|
||||
tegra_dc_init(dc);
|
||||
@@ -858,7 +857,6 @@ static void _tegra_dc_disable(struct tegra_dc *dc)
|
||||
dc->out_ops->disable(dc);
|
||||
|
||||
disable_irq(dc->irq);
|
||||
tegra_periph_reset_assert(dc->clk);
|
||||
clk_disable(dc->clk);
|
||||
|
||||
if (dc->out && dc->out->disable)
|
||||
|
||||
Reference in New Issue
Block a user