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 <[email protected]> Signed-off-by: Cruise Hung <[email protected]> Signed-off-by: Wayne Lin <[email protected]> Tested-by: Daniel Wheeler <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent 747bfca commit c73375d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)