From 33030d61cfa0e5558bf206f6035ec353387a1430 Mon Sep 17 00:00:00 2001 From: Vincent Abriou Date: Wed, 14 Sep 2016 10:14:23 +0200 Subject: [PATCH] drm/sti: dpms function missing for HDMI connector Signed-off-by: Vincent Abriou Acked-by: Benjamin Gaignard --- drivers/gpu/drm/sti/sti_hdmi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/sti/sti_hdmi.c b/drivers/gpu/drm/sti/sti_hdmi.c index c6aa291cc530..d850ddac2338 100644 --- a/drivers/gpu/drm/sti/sti_hdmi.c +++ b/drivers/gpu/drm/sti/sti_hdmi.c @@ -1054,6 +1054,7 @@ static int sti_hdmi_late_register(struct drm_connector *connector) } static const struct drm_connector_funcs sti_hdmi_connector_funcs = { + .dpms = drm_atomic_helper_connector_dpms, .fill_modes = drm_helper_probe_single_connector_modes, .detect = sti_hdmi_connector_detect, .destroy = drm_connector_cleanup,