We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ba59ff + 49cc179 commit a808013Copy full SHA for a808013
drivers/gpu/drm/i915/display/intel_dp.c
@@ -442,6 +442,10 @@ bool intel_dp_has_bigjoiner(struct intel_dp *intel_dp)
442
struct intel_encoder *encoder = &intel_dig_port->base;
443
struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
444
445
+ /* eDP MSO is not compatible with joiner */
446
+ if (intel_dp->mso_link_count)
447
+ return false;
448
+
449
return DISPLAY_VER(dev_priv) >= 12 ||
450
(DISPLAY_VER(dev_priv) == 11 &&
451
encoder->port != PORT_A);
0 commit comments