summaryrefslogtreecommitdiff
path: root/drivers/video/fbdev
diff options
context:
space:
mode:
authorAravind Venkateswaran <aravindh@codeaurora.org>2017-01-15 14:53:03 -0800
committerAravind Venkateswaran <aravindh@codeaurora.org>2017-01-18 23:19:54 -0800
commit8a4208ec19bf98286073c79803b30806726d9b59 (patch)
tree44a74a5de66cc71edd8bbc455ac9a49682485f71 /drivers/video/fbdev
parentce49c9f5cdbdc3e21521f3264a2020a461276846 (diff)
msm: hdmi: edid: add 640x480p59.94 resolution to timing database
Populate the required parameters for 640x480p59.94 resolution and add this to the resolution database. CRs-Fixed: 1109812 Change-Id: Ic600d81e81d695288abd7638112e2541df5b1197 Signed-off-by: Aravind Venkateswaran <aravindh@codeaurora.org>
Diffstat (limited to 'drivers/video/fbdev')
-rw-r--r--drivers/video/fbdev/msm/mdss_hdmi_util.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/video/fbdev/msm/mdss_hdmi_util.c b/drivers/video/fbdev/msm/mdss_hdmi_util.c
index 89890bcf68df..102c2f994646 100644
--- a/drivers/video/fbdev/msm/mdss_hdmi_util.c
+++ b/drivers/video/fbdev/msm/mdss_hdmi_util.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2016, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2010-2017, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@@ -555,6 +555,9 @@ int msm_hdmi_get_timing_info(
case HDMI_VFRMT_3840x2160p60_64_27:
MSM_HDMI_MODES_GET_DETAILS(mode, HDMI_VFRMT_3840x2160p60_64_27);
break;
+ case HDMI_VFRMT_640x480p59_4_3:
+ MSM_HDMI_MODES_GET_DETAILS(mode, HDMI_VFRMT_640x480p59_4_3);
+ break;
default:
ret = hdmi_get_resv_timing_info(mode, id);
}