intel_extreme: Mark IvyBridge as having a PCH

* Modesetting now works on IvyBridge
* Preferred mode needs work though as my chipset
  defaults to 1024x768 vs 1366x768
This commit is contained in:
Alexander von Gluck IV
2012-12-29 00:09:00 +00:00
parent 9f50169e2d
commit a2b448a0c1
@@ -128,7 +128,8 @@ struct DeviceType {
bool HasPlatformControlHub() const
{
return InGroup(INTEL_TYPE_ILK) || InGroup(INTEL_TYPE_SNB);
return InGroup(INTEL_TYPE_ILK) || InGroup(INTEL_TYPE_SNB)
|| InGroup(INTEL_TYPE_IVB);
}
};