diff mbox series

drm/amd/display: Replace pr_info in dc_validate_boot_timing()

Message ID 20250203180203.1259237-1-alex.hung@amd.com (mailing list archive)
State New
Headers show
Series drm/amd/display: Replace pr_info in dc_validate_boot_timing() | expand

Commit Message

Alex Hung Feb. 3, 2025, 6:02 p.m. UTC
Use DC_LOG_DEBUG instead of pr_info to match other uses in dc.c.

Fixes: eb8eec752038 ("drm/amd/display: Add debug messages for dc_validate_boot_timing()")

Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Alex Hung <alex.hung@amd.com>
---
 drivers/gpu/drm/amd/display/dc/core/dc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index a2b0331ef579..793351e15bc3 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -1865,7 +1865,7 @@  bool dc_validate_boot_timing(const struct dc *dc,
 			uint32_t pixels_per_cycle = se->funcs->get_pixels_per_cycle(se);
 
 			if (pixels_per_cycle != 1 && !dc->debug.enable_dp_dig_pixel_rate_div_policy) {
-				pr_info("boot timing validation failed due to pixels_per_cycle\n");
+				DC_LOG_DEBUG("boot timing validation failed due to pixels_per_cycle\n");
 				return false;
 			}