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

Commit e5604e2f authored by Ville Syrjälä's avatar Ville Syrjälä
Browse files

drm/i915: Suppress spurious combo PHY B warning



On ICL the DMC doesn't reinit combo PHY B so we should not warn
about its state being bogus during the display core uninit.

Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190411143349.17934-1-ville.syrjala@linux.intel.com


Reviewed-by: default avatarImre Deak <imre.deak@intel.com>
parent 7a412b8f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -239,7 +239,8 @@ void icl_combo_phys_uninit(struct drm_i915_private *dev_priv)
	for_each_combo_port_reverse(dev_priv, port) {
		u32 val;

		if (!icl_combo_phy_verify_state(dev_priv, port))
		if (port == PORT_A &&
		    !icl_combo_phy_verify_state(dev_priv, port))
			DRM_WARN("Port %c combo PHY HW state changed unexpectedly\n",
				 port_name(port));