Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/imx-dcss: Switch to drm_atomic_get_new_crtc_state()

The imx-dcss atomic_check implementation uses the deprecated
drm_atomic_get_existing_crtc_state() helper.

This hook is called as part of the global atomic_check, thus before the
states are swapped. The existing state thus points to the new state, and
we can use drm_atomic_get_new_crtc_state() instead.

Reviewed-by: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://lore.kernel.org/r/20250930-drm-no-more-existing-state-v5-18-eeb9e1287907@kernel.org
Signed-off-by: Maxime Ripard <mripard@kernel.org>

+2 -2
+2 -2
drivers/gpu/drm/imx/dcss/dcss-plane.c
··· 159 159 dma_obj = drm_fb_dma_get_gem_obj(fb, 0); 160 160 WARN_ON(!dma_obj); 161 161 162 - crtc_state = drm_atomic_get_existing_crtc_state(state, 163 - new_plane_state->crtc); 162 + crtc_state = drm_atomic_get_new_crtc_state(state, 163 + new_plane_state->crtc); 164 164 165 165 hdisplay = crtc_state->adjusted_mode.hdisplay; 166 166 vdisplay = crtc_state->adjusted_mode.vdisplay;