Commit 1ca8dde8 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] tda18271c2dd: fix support for DVB-C

As reported by Hartmut <e9hack@googlemail.com>:

> A break is missing before the default statement. Delivery systems for DVB-C result always
> in an error.
Reported-by: default avatarHartmut <e9hack@googlemail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent f571e004
......@@ -1159,6 +1159,7 @@ static int set_params(struct dvb_frontend *fe,
Standard = HF_DVBC_7MHZ;
else
Standard = HF_DVBC_8MHZ;
break;
default:
return -EINVAL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment