On 2021-10-17 07:34, Claudio Suarez wrote: > > From the TODO list Documentation/gpu/todo.rst > ----------------------- > Once EDID is parsed, the monitor HDMI support information is available through > drm_display_info.is_hdmi. Many drivers still call drm_detect_hdmi_monitor() to > retrieve the same information, which is less efficient. > > Audit each individual driver calling drm_detect_hdmi_monitor() and switch to > drm_display_info.is_hdmi if applicable. > ----------------------- > The task is divided in three small patches. The last patch depends on the > first one. > Thanks. This series is Reviewed-by: Harry Wentland <harry.wentland@xxxxxxx> Harry > > > Claudio Suarez (3): > drm/amdgpu: update drm_display_info correctly when the edid is read > drm/amdgpu: use drm_edid_get_monitor_name() instead of duplicating the > code > drm/amdgpu: replace drm_detect_hdmi_monitor() with > drm_display_info.is_hdmi > > .../gpu/drm/amd/amdgpu/amdgpu_connectors.c | 17 +++++---- > drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 2 +- > drivers/gpu/drm/amd/amdgpu/amdgpu_encoders.c | 4 +- > .../gpu/drm/amd/amdgpu/atombios_encoders.c | 6 +-- > .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 3 +- > .../amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 37 +++++-------------- > drivers/gpu/drm/amd/display/dc/core/dc.c | 2 +- > drivers/gpu/drm/amd/display/dc/dm_helpers.h | 2 +- > 8 files changed, 29 insertions(+), 44 deletions(-) >