提交 ecf837d9 编写于 作者: V Ville Syrjälä

drm/i915: Use enum pipe for PCH transcoders

One more place where we've failed to switch to enum pipe when talking
about PCH transcoders.
Signed-off-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20171010125556.25086-1-ville.syrjala@linux.intel.comReviewed-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
上级 69208c9e
...@@ -14758,10 +14758,10 @@ static struct intel_connector *intel_encoder_find_connector(struct intel_encoder ...@@ -14758,10 +14758,10 @@ static struct intel_connector *intel_encoder_find_connector(struct intel_encoder
} }
static bool has_pch_trancoder(struct drm_i915_private *dev_priv, static bool has_pch_trancoder(struct drm_i915_private *dev_priv,
enum transcoder pch_transcoder) enum pipe pch_transcoder)
{ {
return HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv) || return HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv) ||
(HAS_PCH_LPT_H(dev_priv) && pch_transcoder == TRANSCODER_A); (HAS_PCH_LPT_H(dev_priv) && pch_transcoder == PIPE_A);
} }
static void intel_sanitize_crtc(struct intel_crtc *crtc, static void intel_sanitize_crtc(struct intel_crtc *crtc,
...@@ -14844,7 +14844,7 @@ static void intel_sanitize_crtc(struct intel_crtc *crtc, ...@@ -14844,7 +14844,7 @@ static void intel_sanitize_crtc(struct intel_crtc *crtc,
* PCH transcoders B and C would prevent enabling the south * PCH transcoders B and C would prevent enabling the south
* error interrupt (see cpt_can_enable_serr_int()). * error interrupt (see cpt_can_enable_serr_int()).
*/ */
if (has_pch_trancoder(dev_priv, (enum transcoder)crtc->pipe)) if (has_pch_trancoder(dev_priv, crtc->pipe))
crtc->pch_fifo_underrun_disabled = true; crtc->pch_fifo_underrun_disabled = true;
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册