aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/intel_dp.c
diff options
context:
space:
mode:
authorZhenyu Wang <zhenyuw@linux.intel.com>2010-01-12 05:38:32 +0800
committerEric Anholt <eric@anholt.net>2010-01-15 14:13:18 -0800
commit6251ec0ae2eb9e9e96689422358c2fdb35c63768 (patch)
tree94e22bcd7941ccafd458d232048e5b8c0000c3aa /drivers/gpu/drm/i915/intel_dp.c
parentdrm/i915: fix pixel color depth setting on eDP (diff)
downloadlinux-dev-6251ec0ae2eb9e9e96689422358c2fdb35c63768.tar.xz
linux-dev-6251ec0ae2eb9e9e96689422358c2fdb35c63768.zip
drm/i915: fix eDP pipe mask
eDP could be on pipe A or B. Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com> Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to '')
-rw-r--r--drivers/gpu/drm/i915/intel_dp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index 184b6780c440..439506cefc14 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -1331,11 +1331,10 @@ intel_dp_init(struct drm_device *dev, int output_reg)
else if (output_reg == DP_D || output_reg == PCH_DP_D)
intel_output->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);
- if (IS_eDP(intel_output)) {
- intel_output->crtc_mask = (1 << 1);
+ if (IS_eDP(intel_output))
intel_output->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
- } else
- intel_output->crtc_mask = (1 << 0) | (1 << 1);
+
+ intel_output->crtc_mask = (1 << 0) | (1 << 1);
connector->interlace_allowed = true;
connector->doublescan_allowed = 0;