aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2025-07-18 09:59:42 +1000
committerDave Airlie <airlied@redhat.com>2025-07-18 09:59:58 +1000
commitfbefd8adda4ef6c7a3a7b875ad075a75f0256094 (patch)
tree55f6c72fa7dae3ded45c2611036de8937824b2bf /drivers/gpu
parentMerge tag 'drm-misc-fixes-2025-07-16' of https://gitlab.freedesktop.org/drm/m... (diff)
parentdrm/dp: Change AUX DPCD probe address from LANE0_1_STATUS to TRAINING_PATTERN... (diff)
downloadlinux-fbefd8adda4ef6c7a3a7b875ad075a75f0256094.tar.gz
linux-fbefd8adda4ef6c7a3a7b875ad075a75f0256094.zip
Merge tag 'drm-intel-fixes-2025-07-17' of https://gitlab.freedesktop.org/drm/i915/kernel into drm-fixes
- DP AUX DPCD address fix (Imre) Signed-off-by: Dave Airlie <airlied@redhat.com> From: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://lore.kernel.org/r/aHkQmRhelb4Fzqau@intel.com
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/display/drm_dp_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
index dc622c78db9d..ea78c6c8ca7a 100644
--- a/drivers/gpu/drm/display/drm_dp_helper.c
+++ b/drivers/gpu/drm/display/drm_dp_helper.c
@@ -725,7 +725,7 @@ ssize_t drm_dp_dpcd_read(struct drm_dp_aux *aux, unsigned int offset,
* monitor doesn't power down exactly after the throw away read.
*/
if (!aux->is_remote) {
- ret = drm_dp_dpcd_probe(aux, DP_LANE0_1_STATUS);
+ ret = drm_dp_dpcd_probe(aux, DP_TRAINING_PATTERN_SET);
if (ret < 0)
return ret;
}