diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-10-17 06:55:08 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-11-12 06:40:26 -0500 |
commit | d13cbb32c50019b38fb3ab030a8ab435b6f2440a (patch) | |
tree | e794d3569f3ab4df63fded58ac6d97337aeb820d | |
parent | c2fbd061a28530dd24b2593bffa2b6a5b15eb3ed (diff) |
OMAPDSS: HDMI: remove extra poweroff
hdmi_pll_enable powers off the PLL as the first thing it does. Right
after that, it enables the PLL powers.
The initial power-off is pointless, so let's remove it.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/fbdev/omap2/dss/hdmi_pll.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/video/fbdev/omap2/dss/hdmi_pll.c b/drivers/video/fbdev/omap2/dss/hdmi_pll.c index c14c3d132513..92d22252f86a 100644 --- a/drivers/video/fbdev/omap2/dss/hdmi_pll.c +++ b/drivers/video/fbdev/omap2/dss/hdmi_pll.c | |||
@@ -171,10 +171,6 @@ int hdmi_pll_enable(struct hdmi_pll_data *pll) | |||
171 | struct hdmi_wp_data *wp = pll->wp; | 171 | struct hdmi_wp_data *wp = pll->wp; |
172 | u16 r = 0; | 172 | u16 r = 0; |
173 | 173 | ||
174 | r = hdmi_wp_set_pll_pwr(wp, HDMI_PLLPWRCMD_ALLOFF); | ||
175 | if (r) | ||
176 | return r; | ||
177 | |||
178 | r = hdmi_wp_set_pll_pwr(wp, HDMI_PLLPWRCMD_BOTHON_ALLCLKS); | 174 | r = hdmi_wp_set_pll_pwr(wp, HDMI_PLLPWRCMD_BOTHON_ALLCLKS); |
179 | if (r) | 175 | if (r) |
180 | return r; | 176 | return r; |