cec: Fix coverity error [1/1]

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>
This commit is contained in:
Yong Qin
2019-10-11 10:19:31 +08:00
committed by Luke Go
parent 3cc112360c
commit 11381e86b9
2 changed files with 3 additions and 3 deletions

View File

@@ -2463,7 +2463,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");
@@ -2492,7 +2492,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");

View 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"