Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf404ce4 authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter
Browse files

drm/i915: Spell out IS_HSW/BDW_ULT() in intel_crt_present()



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: default avatarDamien Lespiau <damien.lespiau@intel.com>
Reviewed-by: default avatarPaulo Zanoni <paulo.r.zanoni@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent dbf7786e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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))