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 <brian.zhu@amlogic.com>
This commit is contained in:
Brian Zhu
2019-07-29 13:52:45 +08:00
committed by Tao Zeng
parent dd96e660ee
commit cb0491f2ca

View File

@@ -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;