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

drm/amd/display: Print seamless boot message in mark_seamless_boot_stream

[WHAT & HOW]
Add a message so users know the stream will be used for seamless boot.

Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Reviewed-by: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
Signed-off-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Roman Li <roman.li@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Alex Hung and committed by
Alex Deucher
5f7e384a d27a1e93

+3 -1
+3 -1
drivers/gpu/drm/amd/display/dc/core/dc_resource.c
··· 3764 3764 { 3765 3765 struct dc_bios *dcb = dc->ctx->dc_bios; 3766 3766 3767 + DC_LOGGER_INIT(dc->ctx->logger); 3768 + 3767 3769 if (stream->apply_seamless_boot_optimization) 3768 3770 return; 3769 3771 if (!dc->config.allow_seamless_boot_optimization) ··· 3774 3772 return; 3775 3773 if (dc_validate_boot_timing(dc, stream->sink, &stream->timing)) { 3776 3774 stream->apply_seamless_boot_optimization = true; 3777 - DC_LOG_INFO("Marked stream for seamless boot optimization\n"); 3775 + DC_LOG_DC("Marked stream for seamless boot optimization\n"); 3778 3776 } 3779 3777 } 3780 3778