From 207ce431d1d69d6fbe77d798e96bb08cd506053a Mon Sep 17 00:00:00 2001 From: Evoke Zhang Date: Thu, 4 May 2017 18:50:44 +0800 Subject: [PATCH] hdmitx: correct 1080i vinfo field_height to 540 PD#143444: correct 1080i vinfo field_height to 540 Change-Id: Ie20516f7462bf001946a219bd2fb8e4de36ef8d8 Signed-off-by: Evoke Zhang --- .../amlogic/media/vout/hdmitx/hdmi_common/hdmi_parameters.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/amlogic/media/vout/hdmitx/hdmi_common/hdmi_parameters.c b/drivers/amlogic/media/vout/hdmitx/hdmi_common/hdmi_parameters.c index 66201d21752f..fb983b9ebf8f 100644 --- a/drivers/amlogic/media/vout/hdmitx/hdmi_common/hdmi_parameters.c +++ b/drivers/amlogic/media/vout/hdmitx/hdmi_common/hdmi_parameters.c @@ -723,7 +723,7 @@ static struct hdmi_format_para fmt_para_1920x1080i60_16x9 = { .mode = VMODE_HDMI, .width = 1920, .height = 1080, - .field_height = 1080, + .field_height = 540, .aspect_ratio_num = 16, .aspect_ratio_den = 9, .sync_duration_num = 60, @@ -767,7 +767,7 @@ static struct hdmi_format_para fmt_para_1920x1080i50_16x9 = { .mode = VMODE_HDMI, .width = 1920, .height = 1080, - .field_height = 1080, + .field_height = 540, .aspect_ratio_num = 16, .aspect_ratio_den = 9, .sync_duration_num = 50,