From: Gustavo Padovan gustavo.padovan@collabora.co.uk
old_plane_state is already assigned to old_state->plane_states[i] inside for_each_plane_in_state(). Here we remove an the extra assignment.
Signed-off-by: Gustavo Padovan gustavo.padovan@collabora.co.uk --- 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 5d30592..c9af027 100644 --- a/drivers/gpu/drm/drm_atomic_helper.c +++ b/drivers/gpu/drm/drm_atomic_helper.c @@ -1130,8 +1130,6 @@ void drm_atomic_helper_commit_planes(struct drm_device *dev, if (!funcs) continue;
- old_plane_state = old_state->plane_states[i]; - /* * Special-case disabling the plane if drivers support it. */