From cb0491f2cab55e0a67a54873119a4a6b457ed7af Mon Sep 17 00:00:00 2001 From: Brian Zhu Date: Mon, 29 Jul 2019 13:52:45 +0800 Subject: [PATCH] amcsc: remove the vout_device is NULL log [1/1] PD#SWPL-11922 Problem: When the vout_device point is NULL, amcsc will print too many logs. Solution: Remove this warning log since the vout_device = NULL is normal under TV or CVBS case. Verify: Verified by X301 Change-Id: I007e3970b8361e0cd79bfc81ee5205cbb262c0c1 Signed-off-by: Brian Zhu --- drivers/amlogic/media/enhancement/amvecm/amcsc_pip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/amlogic/media/enhancement/amvecm/amcsc_pip.c b/drivers/amlogic/media/enhancement/amvecm/amcsc_pip.c index 2e8162db06a6..e993e33b9887 100644 --- a/drivers/amlogic/media/enhancement/amvecm/amcsc_pip.c +++ b/drivers/amlogic/media/enhancement/amvecm/amcsc_pip.c @@ -629,7 +629,7 @@ void hdmi_packet_process( if (!vinfo) return; if (!vinfo->vout_device) { - pr_info("vinfo->vout_device is null, return\n"); + /* pr_info("vinfo->vout_device is null, return\n"); */ return; } vdev = vinfo->vout_device;