Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/displayid: reduce DisplayID checksum error logging to debug
@ 2026-02-17  5:50 Vidya Srinivas
  2026-02-17  6:00 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Vidya Srinivas @ 2026-02-17  5:50 UTC (permalink / raw)
  To: intel-gfx; +Cc: intel-xe, jani.nikula, Vidya Srinivas

The patch "drm/displayid: add quirk to ignore DisplayID
checksum errors" introduced a mechanism to bypass checksum validation
for certain panels. However, even when ignoring the error, the code
continues to log a DRM_NOTE.

On affected hardware, this results in persistent "DisplayID checksum
invalid" messages in the system log. This noise often misleads users
into thinking there is a critical hardware failure or a functional
regression, despite the quirk successfully handling the issue.

Downgrade the log level from DRM_NOTE to DRM_DEBUG_KMS. This keeps
the diagnostic information available for kernel developers while
silencing the unnecessary warning for end-users.

Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
---
 drivers/gpu/drm/drm_displayid.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_displayid.c b/drivers/gpu/drm/drm_displayid.c
index 58d0bb6d2676..1f6d78fe29f2 100644
--- a/drivers/gpu/drm/drm_displayid.c
+++ b/drivers/gpu/drm/drm_displayid.c
@@ -69,7 +69,7 @@ validate_displayid(const u8 *displayid, int length, int idx, bool ignore_checksu
 	for (i = 0; i < dispid_length; i++)
 		csum += displayid[idx + i];
 	if (csum) {
-		DRM_NOTE("DisplayID checksum invalid, remainder is %d%s\n", csum,
+		DRM_DEBUG_KMS("DisplayID checksum invalid, remainder is %d%s\n", csum,
 			 ignore_checksum ? " (ignoring)" : "");
 
 		if (!ignore_checksum)
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2026-02-24 14:41 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-17  5:50 [PATCH] drm/displayid: reduce DisplayID checksum error logging to debug Vidya Srinivas
2026-02-17  6:00 ` ✗ CI.checkpatch: warning for " Patchwork
2026-02-17  6:02 ` ✓ CI.KUnit: success " Patchwork
2026-02-17  6:36 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-17  7:34 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-23 10:32 ` [PATCH] " Jani Nikula
2026-02-23 11:47   ` Srinivas, Vidya
2026-02-24 13:16     ` Jani Nikula
2026-02-24 14:40       ` Srinivas, Vidya

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox