intel_extreme: Fix regression from hrev50410; #12855

This commit is contained in:
Alexander von Gluck IV
2016-07-12 10:04:50 -05:00
parent b134f71033
commit 49cabb0d5d
@@ -365,11 +365,13 @@ LVDSPort::LVDSPort()
pipe_index pipe_index
LVDSPort::PipePreference() LVDSPort::PipePreference()
{ {
// LVDS always pipe b on < gen4 // TODO: Technically INTEL_PIPE_B is only required on < gen 4
if (gInfo->shared_info->device_type.Generation() < 4) // otherwise we can use INTEL_PIPE_ANY, however it seems to break
return INTEL_PIPE_B; // modesetting atm. (likely due to a bug on our end)
//if (gInfo->shared_info->device_type.Generation() < 4)
// return INTEL_PIPE_B;
return INTEL_PIPE_ANY; return INTEL_PIPE_B;
} }