[Intel-gfx] [PATCH] drm/i915: Support pf CRC source on haswell transcoder edp
Damien Lespiau
damien.lespiau at intel.com
Thu May 29 01:21:19 CEST 2014
On Thu, May 29, 2014 at 12:27:55AM +0200, Daniel Vetter wrote:
> - if (IS_HASWELL(dev) && intel_crtc->config.pch_pfit.enabled)
> + if (IS_HASWELL(dev) && intel_crtc->config.pch_pfit.enabled ||
> + intel_crtc->config.pch_pfit.force_thru)
> temp |= TRANS_DDI_EDP_INPUT_A_ONOFF;
My gcc warns here, suggesting the addition of (). And indeed, it seems
that we want:
if (IS_HASWELL(dev) && (intel_crtc->config.pch_pfit.enabled ||
intel_crtc->config.pch_pfit.force_thru))
temp |= TRANS_DDI_EDP_INPUT_A_ONOFF;
--
Damien
More information about the Intel-gfx
mailing list