projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1780999
)
drm/imx: don't call disable_plane in plane destroy path
author
Lucas Stach
<l.stach@pengutronix.de>
Thu, 11 Aug 2016 09:18:47 +0000
(11:18 +0200)
committer
Philipp Zabel
<p.zabel@pengutronix.de>
Mon, 29 Aug 2016 10:45:05 +0000
(12:45 +0200)
When the destroy path is called the plane should already be
disabled. If not, this is a core bug and should not be worked
around in the driver.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/gpu/drm/imx/ipuv3-plane.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/imx/ipuv3-plane.c
b/drivers/gpu/drm/imx/ipuv3-plane.c
index
3c4f689
..
ce4058f
100644
(file)
--- a/
drivers/gpu/drm/imx/ipuv3-plane.c
+++ b/
drivers/gpu/drm/imx/ipuv3-plane.c
@@
-242,7
+242,6
@@
static void ipu_plane_destroy(struct drm_plane *plane)
DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
- ipu_disable_plane(plane);
drm_plane_cleanup(plane);
kfree(ipu_plane);
}