Skip to content

Commit

Permalink
intel_extreme: Mark IvyBridge as having a PCH
Browse files Browse the repository at this point in the history
* Modesetting now works on IvyBridge
* Preferred mode needs work though as my chipset
  defaults to 1024x768 vs 1366x768
  • Loading branch information
kallisti5 committed Dec 29, 2012
1 parent 9f50169 commit a2b448a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion headers/private/graphics/intel_extreme/intel_extreme.h
Expand Up @@ -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);
}
};

Expand Down

0 comments on commit a2b448a

Please sign in to comment.