diff options
author | Keith Packard <keithp@keithp.com> | 2011-08-03 10:34:58 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-03 10:37:21 -0700 |
commit | 4edd17a25c99f34bd7a75c1daf31afe840237da8 (patch) | |
tree | 2f4d9a2b48672368576f835a59ce59526f103e88 /drivers/gpu | |
parent | 11bee43ebba0bfc92165c059f6e9869197ea8889 (diff) | |
download | talos-obmc-linux-4edd17a25c99f34bd7a75c1daf31afe840237da8.tar.gz talos-obmc-linux-4edd17a25c99f34bd7a75c1daf31afe840237da8.zip |
Revert "drm/i915/dp: Zero the DPCD data before connection probe"
This reverts commit 97cdd7101079adc3c626d159c62d43de949516c8.
Clearing the dpcd data means that if the fetch fails, any previous
data will be lost. On eDP, this is no fun as we only fetch dpcd at
init time, so the memset will destroy that the next time through.
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/i915/intel_dp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c index ba72fbcbbbc9..2f901c05ea2c 100644 --- a/drivers/gpu/drm/i915/intel_dp.c +++ b/drivers/gpu/drm/i915/intel_dp.c @@ -1697,7 +1697,6 @@ intel_dp_detect(struct drm_connector *connector, bool force) struct edid *edid = NULL; intel_dp->has_audio = false; - memset(intel_dp->dpcd, 0, sizeof(intel_dp->dpcd)); if (HAS_PCH_SPLIT(dev)) status = ironlake_dp_detect(intel_dp); |