intel_extreme: use proper generation for Tiger Lake devices
The CPU in these is generation 11, but the graphics unit is actually generation 12. Thanks to KapiX for pointing this out!
This commit is contained in:
parent
dcaf47fd7f
commit
38a9416057
@ -226,8 +226,10 @@ struct DeviceType {
|
||||
return 7;
|
||||
if (InGroup(INTEL_GROUP_CHV) || InGroup(INTEL_GROUP_BDW))
|
||||
return 8;
|
||||
if (InGroup(INTEL_GROUP_JSL) || InGroup(INTEL_GROUP_TGL))
|
||||
if (InGroup(INTEL_GROUP_JSL))
|
||||
return 11;
|
||||
if (InGroup(INTEL_GROUP_TGL))
|
||||
return 12;
|
||||
if (InFamily(INTEL_FAMILY_LAKE))
|
||||
return 9;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user