Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Alex Hung and committed by
Alex Deucher
3e7ef261 b0fce908

+1 -1
+1 -1
drivers/gpu/drm/amd/display/dc/core/dc.c
··· 1838 1838 uint32_t pixels_per_cycle = se->funcs->get_pixels_per_cycle(se); 1839 1839 1840 1840 if (pixels_per_cycle != 1 && !dc->debug.enable_dp_dig_pixel_rate_div_policy) { 1841 - pr_info("boot timing validation failed due to pixels_per_cycle\n"); 1841 + DC_LOG_DEBUG("boot timing validation failed due to pixels_per_cycle\n"); 1842 1842 return false; 1843 1843 } 1844 1844