diff options
author | Vincent Abriou <vincent.abriou@st.com> | 2016-02-05 11:31:18 +0300 |
---|---|---|
committer | Vincent Abriou <vincent.abriou@st.com> | 2016-02-26 12:06:17 +0300 |
commit | 0a1dc29db379cb05b784bfd7e4628da02f7d4d83 (patch) | |
tree | b143d179c6cbaf9d92beec1456c16c730739c38d /drivers/gpu/drm/sti | |
parent | 974c3bb511ce0db8c1ba04dd8e242d2eba9c8762 (diff) | |
download | linux-0a1dc29db379cb05b784bfd7e4628da02f7d4d83.tar.xz |
drm/sti: add missing encoder cleanup for DVO connector
Signed-off-by: Vincent Abriou <vincent.abriou@st.com>
Reviewed-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Diffstat (limited to 'drivers/gpu/drm/sti')
-rw-r--r-- | drivers/gpu/drm/sti/sti_tvout.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/sti/sti_tvout.c b/drivers/gpu/drm/sti/sti_tvout.c index 8092418ac65e..e860a41b58aa 100644 --- a/drivers/gpu/drm/sti/sti_tvout.c +++ b/drivers/gpu/drm/sti/sti_tvout.c @@ -653,6 +653,10 @@ static void sti_tvout_destroy_encoders(struct sti_tvout *tvout) if (tvout->hda) drm_encoder_cleanup(tvout->hda); tvout->hda = NULL; + + if (tvout->dvo) + drm_encoder_cleanup(tvout->dvo); + tvout->dvo = NULL; } static int sti_tvout_bind(struct device *dev, struct device *master, void *data) |