提交 d83bc7b6 编写于 作者: G Gustavo A. R. Silva 提交者: Mauro Carvalho Chehab

media: dvb-usb-v2: lmedm04: remove unnecessary variable in lme2510_stream_restart()

Remove unnecessary variable _ret_ and refactor the code.

Addresses-Coverity-ID: 1226934
Signed-off-by: NGustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
上级 b138afda
...@@ -207,15 +207,13 @@ static int lme2510_stream_restart(struct dvb_usb_device *d) ...@@ -207,15 +207,13 @@ static int lme2510_stream_restart(struct dvb_usb_device *d)
struct lme2510_state *st = d->priv; struct lme2510_state *st = d->priv;
u8 all_pids[] = LME_ALL_PIDS; u8 all_pids[] = LME_ALL_PIDS;
u8 stream_on[] = LME_ST_ON_W; u8 stream_on[] = LME_ST_ON_W;
int ret;
u8 rbuff[1]; u8 rbuff[1];
if (st->pid_off) if (st->pid_off)
ret = lme2510_usb_talk(d, all_pids, sizeof(all_pids), lme2510_usb_talk(d, all_pids, sizeof(all_pids),
rbuff, sizeof(rbuff)); rbuff, sizeof(rbuff));
/*Restart Stream Command*/ /*Restart Stream Command*/
ret = lme2510_usb_talk(d, stream_on, sizeof(stream_on), return lme2510_usb_talk(d, stream_on, sizeof(stream_on),
rbuff, sizeof(rbuff)); rbuff, sizeof(rbuff));
return ret;
} }
static int lme2510_enable_pid(struct dvb_usb_device *d, u8 index, u16 pid_out) static int lme2510_enable_pid(struct dvb_usb_device *d, u8 index, u16 pid_out)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册