mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 23:22:31 +02:00
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: 7966f319c6 ("drm/amd/display: Introduce DML2")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
This commit is contained in:
parent
bc03c02cc1
commit
05638ff6dd
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user