diff options
author | Ingo Molnar <mingo@kernel.org> | 2019-09-03 03:23:41 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2019-09-03 03:23:41 -0400 |
commit | ae1ad26388228048db6a5f1056bd569ed2bbc4ec (patch) | |
tree | 223f50677aa00eb6f2a6529099a1005c7e43c071 /drivers/gpu/drm/i915/display/intel_dp_mst.c | |
parent | c84b82dd3e593db217f23c60f7edae02c76a3c4c (diff) | |
parent | 089cf7f6ecb266b6a4164919a2e69bd2f938374a (diff) |
Merge tag 'v5.3-rc7' into x86/mm, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/gpu/drm/i915/display/intel_dp_mst.c')
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_dp_mst.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c index 60652ebbdf61..18e4cba76720 100644 --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c | |||
@@ -539,7 +539,15 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo | |||
539 | 539 | ||
540 | intel_attach_force_audio_property(connector); | 540 | intel_attach_force_audio_property(connector); |
541 | intel_attach_broadcast_rgb_property(connector); | 541 | intel_attach_broadcast_rgb_property(connector); |
542 | drm_connector_attach_max_bpc_property(connector, 6, 12); | 542 | |
543 | /* | ||
544 | * Reuse the prop from the SST connector because we're | ||
545 | * not allowed to create new props after device registration. | ||
546 | */ | ||
547 | connector->max_bpc_property = | ||
548 | intel_dp->attached_connector->base.max_bpc_property; | ||
549 | if (connector->max_bpc_property) | ||
550 | drm_connector_attach_max_bpc_property(connector, 6, 12); | ||
543 | 551 | ||
544 | return connector; | 552 | return connector; |
545 | 553 | ||