diff options
author | hongao <hongao@uniontech.com> | 2022-06-16 10:22:33 +0300 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2022-09-26 04:12:54 +0300 |
commit | 372a2eaf9bed96395699eb4c2d32e3fe48830e8c (patch) | |
tree | 21f8070ffc1a7a0db81a4a9ce10ca61f3a0bd773 /drivers/gpu/drm/exynos/exynos_hdmi.c | |
parent | 320305923c88258ce50c75bf721e9bf2e420ab27 (diff) | |
download | linux-372a2eaf9bed96395699eb4c2d32e3fe48830e8c.tar.xz |
drm/exynos: replace drm_detect_hdmi_monitor() with drm_display_info.is_hdmi
Once EDID is parsed, the monitor HDMI support information is available
through drm_display_info.is_hdmi.
This driver calls drm_detect_hdmi_monitor() to receive the same
information, which is less efficient.
Avoid calling drm_detect_hdmi_monitor() and use drm_display_info.is_hdmi
instead.
Signed-off-by: hongao <hongao@uniontech.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_hdmi.c')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_hdmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c index 10b0036f8a2e..ad56d4ea335d 100644 --- a/drivers/gpu/drm/exynos/exynos_hdmi.c +++ b/drivers/gpu/drm/exynos/exynos_hdmi.c @@ -893,7 +893,7 @@ static int hdmi_get_modes(struct drm_connector *connector) if (!edid) return -ENODEV; - hdata->dvi_mode = !drm_detect_hdmi_monitor(edid); + hdata->dvi_mode = !connector->display_info.is_hdmi; DRM_DEV_DEBUG_KMS(hdata->dev, "%s : width[%d] x height[%d]\n", (hdata->dvi_mode ? "dvi monitor" : "hdmi monitor"), edid->width_cm, edid->height_cm); |