Commit 79538e63 authored by Yilin Chen's avatar Yilin Chen Committed by Alex Deucher
Browse files

drm/amd/display: Fix message for support_edp0_on_dp1



[WHY]
The info message was wrong when support_edp0_on_dp1 is enabled

[HOW]
Use correct info message for support_edp0_on_dp1

Fixes: f6d17270 ("drm/amd/display: add a quirk to enable eDP0 on DP1")
Reviewed-by: default avatarAurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: default avatarYilin Chen <Yilin.Chen@amd.com>
Signed-off-by: default avatarAlex Hung <alex.hung@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 9c2f4ae6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1752,7 +1752,7 @@ static void retrieve_dmi_info(struct amdgpu_display_manager *dm, struct dc_init_
	}
	if (quirk_entries.support_edp0_on_dp1) {
		init_data->flags.support_edp0_on_dp1 = true;
		drm_info(dev, "aux_hpd_discon_quirk attached\n");
		drm_info(dev, "support_edp0_on_dp1 attached\n");
	}
}