diff options
| author | Alex Hung <alex.hung@amd.com> | 2025-02-03 21:02:03 +0300 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2025-02-13 05:03:03 +0300 |
| commit | 3e7ef261d3866421a71fb6ec9e48bca543a4d339 (patch) | |
| tree | 20aa7c7650bc9da6d80eb9c6ad8b706fc9b53994 /drivers/gpu/drm/amd | |
| parent | b0fce908cf5db7d624c83f81050211e158febabd (diff) | |
| download | linux-3e7ef261d3866421a71fb6ec9e48bca543a4d339.tar.xz | |
drm/amd/display: Replace pr_info in dc_validate_boot_timing()
Use DC_LOG_DEBUG instead of pr_info to match other uses in dc.c.
Fixes: 091e301c2b41 ("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>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/core/dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c index c5f1b61ed640..05ad7a9af4ff 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -1838,7 +1838,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; } |
