Skip to content

Commit

Permalink
drm/i915: Spell out IS_HSW/BDW_ULT() in intel_crt_present()
Browse files Browse the repository at this point in the history
The quality of being a ULT or ULX package doesn't tell anything across
generations and so a global IS_ULT() macro doesn't make much sense, esp.
as we're adding new products.

So, spell out which ULT/ULX SKUs we are talking about here, namely HSW
and BDW.

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Damien Lespiau authored and Daniel Vetter committed Oct 24, 2014
1 parent dbf7786 commit cf404ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -12162,7 +12162,7 @@ static bool intel_crt_present(struct drm_device *dev)
if (INTEL_INFO(dev)->gen >= 9)
return false;

if (IS_ULT(dev))
if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
return false;

if (IS_CHERRYVIEW(dev))
Expand Down

0 comments on commit cf404ce

Please sign in to comment.