drm/amd/display: Change error to warning when hpd remains low for eDP
authorVarone <divarone@amd.com>
Sun, 23 Jan 2022 18:20:01 +0000 (13:20 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 25 Jan 2022 23:00:34 +0000 (18:00 -0500)
[WHY?]
SKUs that contain an unused eDP connector will throw an error when no
display is connected.

[HOW?]
Change error to a warning.

Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Reviewed-by: Martin Leung <Martin.Leung@amd.com>
Acked-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Dillon Varone <divarone@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c

index b83c5544247d8d72688db10aff35bd6cfd1dd4f4..72dd41e7a7d6c24c4f281f1c399bad658768b6d4 100644 (file)
@@ -793,7 +793,7 @@ void dce110_edp_wait_for_hpd_ready(
        dal_gpio_destroy_irq(&hpd);
 
        if (false == edp_hpd_high) {
-               DC_LOG_ERROR(
+               DC_LOG_WARNING(
                                "%s: wait timed out!\n", __func__);
        }
 }