This is a note to let you know that I've just added the patch titled drm/amd/display: Don't show stack trace for missing eDP to the 6.4-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-don-t-show-stack-trace-for-missing-edp.patch and it can be found in the queue-6.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 7ad1dfc144cbf62702fd07838da8fd8a77921083 Mon Sep 17 00:00:00 2001 From: Mario Limonciello <mario.limonciello@xxxxxxx> Date: Mon, 31 Jul 2023 09:22:05 -0500 Subject: drm/amd/display: Don't show stack trace for missing eDP From: Mario Limonciello <mario.limonciello@xxxxxxx> commit 7ad1dfc144cbf62702fd07838da8fd8a77921083 upstream. Some systems are only connected by HDMI or DP, so warning related to missing eDP is unnecessary. Downgrade to debug instead. Cc: Hamza Mahfooz <hamza.mahfooz@xxxxxxx> Fixes: 6d9b6dceaa51 ("drm/amd/display: only warn once in dce110_edp_wait_for_hpd_ready()") Reported-by: Mastan.Katragadda@xxxxxxx Signed-off-by: Mario Limonciello <mario.limonciello@xxxxxxx> Reviewed-by: Hamza Mahfooz <hamza.mahfooz@xxxxxxx> Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c +++ b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c @@ -780,7 +780,8 @@ void dce110_edp_wait_for_hpd_ready( dal_gpio_destroy_irq(&hpd); /* ensure that the panel is detected */ - ASSERT(edp_hpd_high); + if (!edp_hpd_high) + DC_LOG_DC("%s: wait timed out!\n", __func__); } void dce110_edp_power_control( Patches currently in stable-queue which might be from mario.limonciello@xxxxxxx are queue-6.4/drm-amd-pm-avoid-unintentional-shutdown-due-to-temperature-momentary-fluctuation.patch queue-6.4/drm-amd-display-don-t-show-stack-trace-for-missing-edp.patch queue-6.4/drm-amd-display-fix-a-regression-on-polaris-cards.patch queue-6.4/drm-amd-pm-expose-swctf-threshold-setting-for-legacy-powerplay.patch queue-6.4/drm-amd-disable-s-g-for-apus-when-64gb-or-more-host-memory.patch queue-6.4/tpm-disable-rng-for-all-amd-ftpms.patch queue-6.4/tpm-add-a-helper-for-checking-hwrng-enabled.patch