From 7d2c7f2d539f0a3909a6b041e9b27a6de020b4e3 Mon Sep 17 00:00:00 2001 From: yicheng shen Date: Thu, 21 Feb 2019 07:01:13 -0500 Subject: [PATCH] hdmirx: fix it_content info error issue [1/1] PD#SWPL-4981 Problem: it_content info is not correct Solution: optimize the method for getting it content Verify: TL1 Change-Id: Ie9202b6496742af6d880ae22f3f8f6154db8629a Signed-off-by: yicheng shen --- drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.c | 2 +- drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.c b/drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.c index d58c11c..867837a 100644 --- a/drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.c +++ b/drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.c @@ -777,7 +777,7 @@ void hdmirx_get_repetition_info(struct tvin_sig_property_s *prop) void hdmirx_get_latency_info(struct tvin_sig_property_s *prop) { prop->latency.allm_mode = rx.vs_info_details.allm_mode; - prop->latency.it_content = it_content; + prop->latency.it_content = rx.cur.it_content; prop->latency.cn_type = rx.cur.cn_type; } diff --git a/drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.h b/drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.h index aa5fdfe..b2806bb 100644 --- a/drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.h +++ b/drivers/amlogic/media/vin/tvin/hdmirx/hdmi_rx_drv.h @@ -46,7 +46,7 @@ * * */ -#define RX_VER2 "ver.2019/01/16" +#define RX_VER2 "ver.2019/02/21" /*print type*/ #define LOG_EN 0x01 -- 2.7.4