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

Commit d8201ab6 authored by Dan Carpenter's avatar Dan Carpenter Committed by Eric Anholt
Browse files

i915: remove unneeded null checks



The "encoder" variable can never be null because it is used as loop
cursor in a list_for_each_entry() loop.

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent 90a78e8f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -576,7 +576,7 @@ intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,
		struct intel_encoder *intel_encoder;
		struct intel_dp_priv *dp_priv;

		if (!encoder || encoder->crtc != crtc)
		if (encoder->crtc != crtc)
			continue;

		intel_encoder = enc_to_intel_encoder(encoder);
@@ -1353,7 +1353,7 @@ intel_trans_dp_port_sel (struct drm_crtc *crtc)
	struct intel_encoder *intel_encoder = NULL;

	list_for_each_entry(encoder, &mode_config->encoder_list, head) {
		if (!encoder || encoder->crtc != crtc)
		if (encoder->crtc != crtc)
			continue;

		intel_encoder = enc_to_intel_encoder(encoder);