diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2012-09-06 11:09:12 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-06 07:22:22 -0400 |
commit | a6224d46d0152a55cc45e5ce27d6768f626f74f8 (patch) | |
tree | 2514d8f8e17a84fdb0993665d702b899d9d965cb | |
parent | 1c4bbfd1c9f25bb35f82641d02ecd0299cfa809c (diff) |
[media] drivers/media/dvb-frontends/sp8870.c: removes unnecessary semicolon
removes unnecessary semicolon
Found by Coccinelle: http://coccinelle.lip6.fr/
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb-frontends/sp8870.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb-frontends/sp8870.c b/drivers/media/dvb-frontends/sp8870.c index e37274c8f14e..2aa8ef76eba2 100644 --- a/drivers/media/dvb-frontends/sp8870.c +++ b/drivers/media/dvb-frontends/sp8870.c | |||
@@ -188,7 +188,7 @@ static int configure_reg0xc05 (struct dtv_frontend_properties *p, u16 *reg0xc05) | |||
188 | break; | 188 | break; |
189 | default: | 189 | default: |
190 | return -EINVAL; | 190 | return -EINVAL; |
191 | }; | 191 | } |
192 | 192 | ||
193 | switch (p->hierarchy) { | 193 | switch (p->hierarchy) { |
194 | case HIERARCHY_NONE: | 194 | case HIERARCHY_NONE: |
@@ -207,7 +207,7 @@ static int configure_reg0xc05 (struct dtv_frontend_properties *p, u16 *reg0xc05) | |||
207 | break; | 207 | break; |
208 | default: | 208 | default: |
209 | return -EINVAL; | 209 | return -EINVAL; |
210 | }; | 210 | } |
211 | 211 | ||
212 | switch (p->code_rate_HP) { | 212 | switch (p->code_rate_HP) { |
213 | case FEC_1_2: | 213 | case FEC_1_2: |
@@ -229,7 +229,7 @@ static int configure_reg0xc05 (struct dtv_frontend_properties *p, u16 *reg0xc05) | |||
229 | break; | 229 | break; |
230 | default: | 230 | default: |
231 | return -EINVAL; | 231 | return -EINVAL; |
232 | }; | 232 | } |
233 | 233 | ||
234 | if (known_parameters) | 234 | if (known_parameters) |
235 | *reg0xc05 |= (2 << 1); /* use specified parameters */ | 235 | *reg0xc05 |= (2 << 1); /* use specified parameters */ |