diff options
author | Joe Perches <joe@perches.com> | 2013-10-08 19:29:08 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-10-17 04:51:57 -0400 |
commit | 2028c71d54e7bd7eb4470d5968f581f9f9284406 (patch) | |
tree | eba75f65ae20290fc8467a42d95f4b7e4e7fb0f5 /drivers/media/dvb-frontends/cx24123.c | |
parent | cfd736adf68a2efcc069f3bd2b5ba545fd5d020c (diff) |
[media] media: Remove unnecessary semicolons
These aren't necessary after switch and while statements.
Signed-off-by: Joe Perches <joe@perches.com>
Reviewed-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/cx24123.c')
-rw-r--r-- | drivers/media/dvb-frontends/cx24123.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/cx24123.c b/drivers/media/dvb-frontends/cx24123.c index a771da3e9f99..72fb5838cae0 100644 --- a/drivers/media/dvb-frontends/cx24123.c +++ b/drivers/media/dvb-frontends/cx24123.c | |||
@@ -739,7 +739,7 @@ static int cx24123_set_voltage(struct dvb_frontend *fe, | |||
739 | return 0; | 739 | return 0; |
740 | default: | 740 | default: |
741 | return -EINVAL; | 741 | return -EINVAL; |
742 | }; | 742 | } |
743 | 743 | ||
744 | return 0; | 744 | return 0; |
745 | } | 745 | } |