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

Commit 22f9fe50 authored by Jesse Barnes's avatar Jesse Barnes Committed by Daniel Vetter
Browse files

drm/i915: fix DDI get_hw_state return value



If we couldn't find a pipe we shouldn't return true.  This might be even
better as a WARN though, since it should be impossible to have the port
enabled without a pipe selected.

Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent deb18211
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1150,7 +1150,7 @@ bool intel_ddi_get_hw_state(struct intel_encoder *encoder,


	DRM_DEBUG_KMS("No pipe for ddi port %i found\n", port);
	DRM_DEBUG_KMS("No pipe for ddi port %i found\n", port);


	return true;
	return false;
}
}


static uint32_t intel_ddi_get_crtc_pll(struct drm_i915_private *dev_priv,
static uint32_t intel_ddi_get_crtc_pll(struct drm_i915_private *dev_priv,