Remove the call to drm_atomic_helper_check_plane_damage() from before calling the atomic_check helpers. The call has no longer any purpose, as the actual evaluation happens after running atomic_check.
Signed-off-by: Thomas Zimmermann <[email protected]> --- drivers/gpu/drm/drm_atomic_helper.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c index 823ce60d45b4..57ffa8c8d641 100644 --- a/drivers/gpu/drm/drm_atomic_helper.c +++ b/drivers/gpu/drm/drm_atomic_helper.c @@ -1034,8 +1034,6 @@ drm_atomic_helper_check_planes(struct drm_device *dev, drm_atomic_helper_plane_changed(state, old_plane_state, new_plane_state, plane); - drm_atomic_helper_check_plane_damage(state, old_plane_state, new_plane_state); - if (!funcs || !funcs->atomic_check) continue; -- 2.54.0
