Skip to content

Commit c73375d

Browse files
Cruise Hungalexdeucher
authored andcommitted
drm/amd/display: Use DC log instead of using DM error msg
[Why & How] It sent an error msg when it failed to read the DP tunneling DPCD field. This should just be a warning msg. Use a DC log instead of a DM error msg. Reviewed-by: Wenjing Liu <wenjing.liu@amd.com> Signed-off-by: Cruise Hung <Cruise.Hung@amd.com> Signed-off-by: Wayne Lin <wayne.lin@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent 747bfca commit c73375d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/amd/display/dc/link/protocols/link_dp_capability.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2023,7 +2023,7 @@ static bool retrieve_link_cap(struct dc_link *link)
20232023
/* Read DP tunneling information. */
20242024
status = dpcd_get_tunneling_device_data(link);
20252025
if (status != DC_OK)
2026-
dm_error("%s: Read DP tunneling device data failed.\n", __func__);
2026+
DC_LOG_DP2("%s: Read DP tunneling device data failed.\n", __func__);
20272027

20282028
retrieve_cable_id(link);
20292029
dpcd_write_cable_id_to_dprx(link);

0 commit comments

Comments
 (0)