diff options
-rw-r--r-- | drivers/gpu/drm/i915/intel_dp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c index e0e835e6a75c..3b584d3dd84b 100644 --- a/drivers/gpu/drm/i915/intel_dp.c +++ b/drivers/gpu/drm/i915/intel_dp.c | |||
@@ -1306,11 +1306,11 @@ intel_dp_init(struct drm_device *dev, int output_reg) | |||
1306 | else | 1306 | else |
1307 | intel_output->type = INTEL_OUTPUT_DISPLAYPORT; | 1307 | intel_output->type = INTEL_OUTPUT_DISPLAYPORT; |
1308 | 1308 | ||
1309 | if (output_reg == DP_B) | 1309 | if (output_reg == DP_B || output_reg == PCH_DP_B) |
1310 | intel_output->clone_mask = (1 << INTEL_DP_B_CLONE_BIT); | 1310 | intel_output->clone_mask = (1 << INTEL_DP_B_CLONE_BIT); |
1311 | else if (output_reg == DP_C) | 1311 | else if (output_reg == DP_C || output_reg == PCH_DP_C) |
1312 | intel_output->clone_mask = (1 << INTEL_DP_C_CLONE_BIT); | 1312 | intel_output->clone_mask = (1 << INTEL_DP_C_CLONE_BIT); |
1313 | else if (output_reg == DP_D) | 1313 | else if (output_reg == DP_D || output_reg == PCH_DP_D) |
1314 | intel_output->clone_mask = (1 << INTEL_DP_D_CLONE_BIT); | 1314 | intel_output->clone_mask = (1 << INTEL_DP_D_CLONE_BIT); |
1315 | 1315 | ||
1316 | if (IS_eDP(intel_output)) { | 1316 | if (IS_eDP(intel_output)) { |