From 1dabd97b88a67e90a40a0f13cd67ca08f016871a Mon Sep 17 00:00:00 2001 From: Abhinav Kumar Date: Tue, 4 Apr 2017 23:09:38 -0700 Subject: [PATCH] drm/msm: fix the display type string in SDE HDMI driver There is a mismatch in the display type string between userspace and HDMI driver causing the userspace to not correctly detect the display configuration. Fix the string to align the userspace and driver. Change-Id: Ibb59fde833cb0be743b337fcb857c81bcbb37266 Signed-off-by: Abhinav Kumar --- drivers/gpu/drm/msm/hdmi-staging/sde_hdmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/msm/hdmi-staging/sde_hdmi.c b/drivers/gpu/drm/msm/hdmi-staging/sde_hdmi.c index 347b78886b24..7d166aacbec7 100644 --- a/drivers/gpu/drm/msm/hdmi-staging/sde_hdmi.c +++ b/drivers/gpu/drm/msm/hdmi-staging/sde_hdmi.c @@ -746,7 +746,7 @@ int sde_hdmi_connector_post_init(struct drm_connector *connector, if (info) sde_kms_info_add_keystr(info, - "DISPLAY_TYPE", + "display type", sde_hdmi->display_type); hdmi->connector = connector;