]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/i915: Initiate DP link training only on the lanes we'll be using
authorKeith Packard <keithp@keithp.com>
Wed, 2 Nov 2011 17:17:59 +0000 (10:17 -0700)
committerKeith Packard <keithp@keithp.com>
Thu, 17 Nov 2011 04:26:27 +0000 (20:26 -0800)
Limit the link training setting command to the lanes needed for the
current mode. It seems vaguely possible that a monitor will try to
train the other lanes and fail in some way, so this seems like the
safer plan.

Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/gpu/drm/i915/intel_dp.c

index 7bdf77e797987c4f78c5af44898559a0847e05f4..8c3819b02a7f95950f5ca08fa22dda7d49446ab6 100644 (file)
@@ -1564,8 +1564,9 @@ intel_dp_set_link_train(struct intel_dp *intel_dp,
 
        ret = intel_dp_aux_native_write(intel_dp,
                                        DP_TRAINING_LANE0_SET,
-                                       intel_dp->train_set, 4);
-       if (ret != 4)
+                                       intel_dp->train_set,
+                                       intel_dp->lane_count);
+       if (ret != intel_dp->lane_count)
                return false;
 
        return true;