projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6865fe
)
drm/i915/dp: Tune down FEC detection timeout error message
author
Imre Deak
<imre.deak@intel.com>
Mon, 13 Nov 2023 14:20:51 +0000
(16:20 +0200)
committer
Imre Deak
<imre.deak@intel.com>
Tue, 14 Nov 2023 15:53:57 +0000
(17:53 +0200)
At least a Realtek DP branch device with the
OUI 00-e0-4c dev-ID Dp1.4 HW-rev 1.0 SW-rev 131.1
device identification doesn't report detecting the FEC decoding start
symbol. Tune down the corresponding error to a debug message.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20231113142051.258864-1-imre.deak@intel.com
drivers/gpu/drm/i915/display/intel_ddi.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/display/intel_ddi.c
b/drivers/gpu/drm/i915/display/intel_ddi.c
index 0712a5200ad353c1c7855b4fe2eecfbdf3790481..f70af660dfcfa7a78b1383a7eb36f917d989b91d 100644
(file)
--- a/
drivers/gpu/drm/i915/display/intel_ddi.c
+++ b/
drivers/gpu/drm/i915/display/intel_ddi.c
@@
-2257,8
+2257,8
@@
static void wait_for_fec_detected(struct drm_dp_aux *aux, bool enabled)
return;
if (err == -ETIMEDOUT)
- drm_
err
(&i915->drm, "Timeout waiting for FEC %s to get detected\n",
- str_enabled_disabled(enabled));
+ drm_
dbg_kms
(&i915->drm, "Timeout waiting for FEC %s to get detected\n",
+
str_enabled_disabled(enabled));
else
drm_dbg_kms(&i915->drm, "FEC detected status read error: %d\n", status);
}