Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 84524917 authored by Inki Dae's avatar Inki Dae Committed by Daniel Vetter
Browse files

drm/atomic: fix null pointer access to mode_fixup callback



This patch fixes null pointer access incurred when
encoder driver didn't set its own mode_fixup callback.

mode_fixup callback shoudn't be called if the callback
of drm_encoder_helper_funcs is NULL.

Changelog v2:
- change it to else if

Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
Reviewed-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 0695726e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -299,7 +299,7 @@ mode_fixup(struct drm_atomic_state *state)
						 encoder->base.id, encoder->name);
				return ret;
			}
		} else {
		} else if (funcs->mode_fixup) {
			ret = funcs->mode_fixup(encoder, &crtc_state->mode,
						&crtc_state->adjusted_mode);
			if (!ret) {