cec: Fix coverity error [1/1]
authorYong Qin <yong.qin@amlogic.com>
Fri, 11 Oct 2019 02:19:31 +0000 (10:19 +0800)
committerTao Zeng <tao.zeng@amlogic.com>
Fri, 11 Oct 2019 09:27:53 +0000 (02:27 -0700)
PD#SWPL-13936

Problem:
Fix coverity error.

Solution:
Fix coverity error.

Verify:
TL1

Change-Id: I3e1af9370b47c1c9e06634f6cd4d04b2a229d664
Signed-off-by: Yong Qin <yong.qin@amlogic.com>
drivers/amlogic/cec/hdmi_ao_cec.c
drivers/amlogic/cec/hdmi_ao_cec.h

index decb564..d8b91fa 100644 (file)
@@ -2462,7 +2462,7 @@ static ssize_t cmda_store(struct class *cla, struct class_attribute *attr,
        for (i = 0; i < cnt; i++)
                buf[i] = (char)tmpbuf[i];
 
-       if (cec_dev && (cec_dev->cec_num > ENABLE_ONE_CEC))
+       if (cec_dev->cec_num > ENABLE_ONE_CEC)
                ceca_trigle_tx(buf, cnt);
        else
                CEC_ERR("ceca not valid\n");
@@ -2491,7 +2491,7 @@ static ssize_t cmdb_store(struct class *cla, struct class_attribute *attr,
        for (i = 0; i < cnt; i++)
                buf[i] = (char)tmpbuf[i];
 
-       if (cec_dev && (cec_dev->cec_num > ENABLE_ONE_CEC))
+       if (cec_dev->cec_num > ENABLE_ONE_CEC)
                cecb_trigle_tx(buf, cnt);
        else
                CEC_ERR("cecb not valid\n");
index 9fedb59..0a4f6b9 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef __AO_CEC_H__
 #define __AO_CEC_H__
 
-#define CEC_DRIVER_VERSION     "2019/7/11: pretect resume received OTP again msg\n"
+#define CEC_DRIVER_VERSION     "2019/10/11: Fix coverity error\n"
 
 #define CEC_FRAME_DELAY                msecs_to_jiffies(400)
 #define CEC_DEV_NAME           "cec"