mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
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:
@@ -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");
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user