diff options
| author | Alex Hung <alex.hung@amd.com> | 2025-12-08 22:18:02 +0300 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2026-01-06 00:59:59 +0300 |
| commit | 2b39d48a0ab368bca4c7a0458fa9cdd05ebcacb6 (patch) | |
| tree | 5f92cfaa9e0d6ead431bec09ccdad7a544adeda4 | |
| parent | 179176134b535246f0b368b30e8ecad50066f896 (diff) | |
| download | linux-2b39d48a0ab368bca4c7a0458fa9cdd05ebcacb6.tar.xz | |
drm/amd/display: Replace log macro for analog display detection
link detection should use LINK_INFO() macro.
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Chenyu Chen <chen-yu.chen@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/link/link_detection.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/link/link_detection.c b/drivers/gpu/drm/amd/display/dc/link/link_detection.c index 56f27a6d2874..03db7116cf09 100644 --- a/drivers/gpu/drm/amd/display/dc/link/link_detection.c +++ b/drivers/gpu/drm/amd/display/dc/link/link_detection.c @@ -1184,7 +1184,9 @@ static bool detect_link_and_local_sink(struct dc_link *link, return false; } - DC_LOG_INFO("%s detected analog display without EDID\n", __func__); + LINK_INFO("link=%d, analog display detected without EDID\n", + link->link_index); + link->type = dc_connection_analog_load; sink->edid_caps.analog = true; break; |
