aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorPeter Senna Tschudin <peter.senna@gmail.com>2012-09-07 10:24:43 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-09-23 16:04:49 -0400
commit8f5c997f188bca44121b2be5f39384c2859af6a7 (patch)
tree1c9e9673ea06b4e53dc9a8aeeee6ad4b57f36249 /drivers/media
parent3ea0a1d1eb2cb1c5c2283867a6f4db3c580486b1 (diff)
[media] drivers/media/dvb-frontends/tda10071.c: removes unnecessary semicolon
removes unnecessary semicolon Found by Coccinelle: http://coccinelle.lip6.fr/ Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com> Acked-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/dvb-frontends/tda10071.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb-frontends/tda10071.c b/drivers/media/dvb-frontends/tda10071.c
index 703c3d05f9f..498c2182c30 100644
--- a/drivers/media/dvb-frontends/tda10071.c
+++ b/drivers/media/dvb-frontends/tda10071.c
@@ -257,7 +257,7 @@ static int tda10071_set_voltage(struct dvb_frontend *fe,
257 __func__); 257 __func__);
258 ret = -EINVAL; 258 ret = -EINVAL;
259 goto error; 259 goto error;
260 }; 260 }
261 261
262 cmd.args[0] = CMD_LNB_SET_DC_LEVEL; 262 cmd.args[0] = CMD_LNB_SET_DC_LEVEL;
263 cmd.args[1] = 0; 263 cmd.args[1] = 0;
@@ -369,7 +369,7 @@ static int tda10071_diseqc_recv_slave_reply(struct dvb_frontend *fe,
369 if (ret) 369 if (ret)
370 goto error; 370 goto error;
371 371
372 reply->msg_len = tmp & 0x1f; /* [4:0] */; 372 reply->msg_len = tmp & 0x1f; /* [4:0] */
373 if (reply->msg_len > sizeof(reply->msg)) 373 if (reply->msg_len > sizeof(reply->msg))
374 reply->msg_len = sizeof(reply->msg); /* truncate API max */ 374 reply->msg_len = sizeof(reply->msg); /* truncate API max */
375 375