[PATCH 1/3] drm/omap: fix missing disable for unused encoder

2014-04-03 Thread Tomi Valkeinen
When an encoder is no longer connected to a crtc, the driver will leave the encoder enabled. This patch adds code to track the encoder used for a crtc, and when the encoder changes, the old one is disabled. Signed-off-by: Tomi Valkeinen --- drivers/gpu/drm/omapdrm/omap_crtc.c | 6 ++ 1 file

[PATCH 1/3] drm/omap: fix missing disable for unused encoder

2014-04-03 Thread Rob Clark
On Thu, Apr 3, 2014 at 9:45 AM, Tomi Valkeinen wrote: > When an encoder is no longer connected to a crtc, the driver will leave > the encoder enabled. > > This patch adds code to track the encoder used for a crtc, and when the > encoder changes, the old one is disabled. > > Signed-off-by: Tomi Val