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

Commit 178e32c2 authored by Ville Syrjälä's avatar Ville Syrjälä
Browse files

drm/atomic: Remove pointless private object NULL state check



We will never add private objects with a NULL state into the atomic
state, hence checking for that is pointless.

Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170712155102.26276-2-ville.syrjala@linux.intel.com
parent 56a91c49
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1013,8 +1013,7 @@ drm_atomic_get_private_obj_state(struct drm_atomic_state *state, void *obj,
	struct __drm_private_objs_state *arr;

	for (i = 0; i < state->num_private_objs; i++)
		if (obj == state->private_objs[i].obj &&
		    state->private_objs[i].obj_state)
		if (obj == state->private_objs[i].obj)
			return state->private_objs[i].obj_state;

	num_objs = state->num_private_objs + 1;