Skip to content

Commit 99785b8

Browse files
appusonyvsyrjala
authored andcommitted
drm/i915/dp: Fix DP MST error after unplugging TypeC cable
This patch avoids DP MST payload error message in dmesg, as it is trying to update the payload to the disconnected DP MST device. After DP MST device is disconnected we should not be updating the payload and hence remove the error. v2: Removed the connector status check and converted from error to debug. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111632 Signed-off-by: Srinivasan S <srinivasan.s@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/1569371742-109402-1-git-send-email-srinivasan.s@intel.com
1 parent f8db4d0 commit 99785b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/display/intel_dp_mst.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ static void intel_mst_disable_dp(struct intel_encoder *encoder,
215215

216216
ret = drm_dp_update_payload_part1(&intel_dp->mst_mgr);
217217
if (ret) {
218-
DRM_ERROR("failed to update payload %d\n", ret);
218+
DRM_DEBUG_KMS("failed to update payload %d\n", ret);
219219
}
220220
if (old_crtc_state->has_audio)
221221
intel_audio_codec_disable(encoder,

0 commit comments

Comments
 (0)