1
0
Fork 0

LF-2138: mxc: vpu_malone: change typedef of 'valid_ts_received' to unsigned int

Bit field of 'valid_ts_received' is 1, change its typedef to
unsigned int. (coverity ID 9000734)

Signed-off-by: Shijie Qin <shijie.qin@nxp.com>
Reviewed-by: ming_qian <ming.qian@nxp.com>
5.4-rM2-2.2.x-imx-squashed
Shijie Qin 2020-08-13 12:01:28 +08:00
parent 66905b708e
commit 2f7a8e07a3
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ typedef struct _TSManager {
int tx_cnt;
int rx_cnt;
int cnt;
int valid_ts_received:1;
unsigned int valid_ts_received:1;
int big_cnt;
TSMRecivedCtl rctl;