Commit 05638ff6 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Alex Deucher
Browse files

drm/amd/display: Fix a switch statement in populate_dml_output_cfg_from_stream_state()



It is likely that the statement related to 'dml_edp' is misplaced. So move
it in the correct "case SIGNAL_TYPE_EDP".

Fixes: 7966f319 ("drm/amd/display: Introduce DML2")
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarHamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
parent bc03c02c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -626,8 +626,8 @@ static void populate_dml_output_cfg_from_stream_state(struct dml_output_cfg_st *
		if (is_dp2p0_output_encoder(pipe))
			out->OutputEncoder[location] = dml_dp2p0;
		break;
		out->OutputEncoder[location] = dml_edp;
	case SIGNAL_TYPE_EDP:
		out->OutputEncoder[location] = dml_edp;
		break;
	case SIGNAL_TYPE_HDMI_TYPE_A:
	case SIGNAL_TYPE_DVI_SINGLE_LINK: