mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 00:06:36 +00:00
drm: omapdrm: Reset the zorder property when disabling a plane
Whether to reset plane properties at disable time isn't well-defined in DRM, but resetting only part of them is probably as bad as it can get. Make the behaviour coherent by resetting the zorder property in addition to the rotation property. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
2debab97a5
commit
82e58855bc
1 changed files with 3 additions and 0 deletions
|
@ -259,6 +259,9 @@ static int omap_plane_disable(struct drm_plane *plane)
|
|||
struct omap_plane *omap_plane = to_omap_plane(plane);
|
||||
|
||||
omap_plane->win.rotation = BIT(DRM_ROTATE_0);
|
||||
omap_plane->info.zorder = plane->type == DRM_PLANE_TYPE_PRIMARY
|
||||
? 0 : omap_plane->id;
|
||||
|
||||
return omap_plane_set_enable(plane, false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue