]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
drm/atomic: Convert drm_atomic_get_private_obj_state() to use new plane state
authorMaxime Ripard <mripard@kernel.org>
Tue, 30 Sep 2025 10:59:53 +0000 (12:59 +0200)
committerMaxime Ripard <mripard@kernel.org>
Mon, 6 Oct 2025 11:59:23 +0000 (13:59 +0200)
commit40d2a29d86798c2ae709528f76dcd12feeede6c2
tree8972bc195ffad2d5c3aa80bf8ac57f714a50291f
parent22c0dd19113a15b5d1a294559f8b3cf16cb6cec7
drm/atomic: Convert drm_atomic_get_private_obj_state() to use new plane state

The drm_atomic_get_private_obj_state() function tries to find if a
private_obj had already been allocated and was part of the given
drm_atomic_state. If one is found, it returns the existing state
pointer.

At the point in time where drm_atomic_get_private_obj_state() can be
called (ie, during atomic_check), the existing state is the new state
and we can thus replace the hand-crafted logic by a call to
drm_atomic_get_new_private_obj_state().

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://lore.kernel.org/r/20250930-drm-no-more-existing-state-v5-38-eeb9e1287907@kernel.org
Signed-off-by: Maxime Ripard <mripard@kernel.org>
drivers/gpu/drm/drm_atomic.c