This is a note to let you know that I've just added the patch titled drm/amd/display: Fix a switch statement in populate_dml_output_cfg_from_stream_state() to the 6.7-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: drm-amd-display-fix-a-switch-statement-in-populate_dml_output_cfg_from_stream_state.patch and it can be found in the queue-6.7 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 05638ff6dd6f0f38734b6b3ee2c7cf15520f5c00 Mon Sep 17 00:00:00 2001 From: Christophe JAILLET <christophe.jaillet@xxxxxxxxxx> Date: Sat, 13 Jan 2024 15:58:21 +0100 Subject: drm/amd/display: Fix a switch statement in populate_dml_output_cfg_from_stream_state() From: Christophe JAILLET <christophe.jaillet@xxxxxxxxxx> commit 05638ff6dd6f0f38734b6b3ee2c7cf15520f5c00 upstream. It is likely that the statement related to 'dml_edp' is misplaced. So move it in the correct "case SIGNAL_TYPE_EDP". Fixes: 7966f319c66d ("drm/amd/display: Introduce DML2") Signed-off-by: Christophe JAILLET <christophe.jaillet@xxxxxxxxxx> Signed-off-by: Hamza Mahfooz <hamza.mahfooz@xxxxxxx> Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx> Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/amd/display/dc/dml2/dml2_translation_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/gpu/drm/amd/display/dc/dml2/dml2_translation_helper.c +++ b/drivers/gpu/drm/amd/display/dc/dml2/dml2_translation_helper.c @@ -624,8 +624,8 @@ static void populate_dml_output_cfg_from 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: Patches currently in stable-queue which might be from christophe.jaillet@xxxxxxxxxx are queue-6.7/riscv-fix-an-off-by-one-in-get_early_cmdline.patch queue-6.7/drm-amd-display-fix-a-switch-statement-in-populate_dml_output_cfg_from_stream_state.patch