Skip to content

Commit a5570fe

Browse files
committed
Revert "drm/i915/dp: Ratelimit DP aux timeout messages"
This reverts commit 7ee6860 "drm/i915/dp: Ratelimit DP aux timeout messages" as although it successfully squelches the debug messages, when it does so it generates a warning instead. CI lights up orange with all the warnings! In its current incarnation DRM_DEBUG_RATELIMITED is not usable for us, and we need to first teach lib/ratelimit.c not to warn when used for debug messages. Fixes: 7ee6860 ("drm/i915/dp: Ratelimit DP aux timeout messages") Signed-off-by: Chris Wilson <[email protected]> Cc: Lyude <[email protected]> Cc: Daniel Vetter <[email protected]> Cc: Jani Nikula <[email protected]> Cc: [email protected] Link: http://patchwork.freedesktop.org/patch/msgid/[email protected] Acked-by: Ville Syrjälä <[email protected]>
1 parent 08f5ba9 commit a5570fe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/gpu/drm/i915/intel_dp.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,8 +1121,7 @@ intel_dp_aux_ch(struct intel_dp *intel_dp,
11211121
/* Timeouts occur when the device isn't connected, so they're
11221122
* "normal" -- don't fill the kernel log with these */
11231123
if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
1124-
DRM_DEBUG_KMS_RATELIMITED("dp_aux_ch timeout status 0x%08x\n",
1125-
status);
1124+
DRM_DEBUG_KMS("dp_aux_ch timeout status 0x%08x\n", status);
11261125
ret = -ETIMEDOUT;
11271126
goto out;
11281127
}

0 commit comments

Comments
 (0)