aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-core/dvb_frontend.c
diff options
context:
space:
mode:
authorSteven Toth <stoth@linuxtv.org>2008-10-06 20:06:48 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-13 10:27:24 -0400
commit0a6393ae21d58e85882185ce1e6b0fe28ff2dfa6 (patch)
tree658582ca377a3d41dd9717dcac9ae397411567dd /drivers/media/dvb/dvb-core/dvb_frontend.c
parent8a4949b7e98cbb9e304416ecf6da978e1fb1fb9e (diff)
V4L/DVB (9177): S2API: Change _8PSK / _16APSK to PSK_8 and APSK_16
... and cleanup any drivers using them. I've also removed NBC_QPSK and modified the cx24116 driver to check the delivery_type also, removing some excess namespace baggage. Signed-off-by: Steven Toth <stoth@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/dvb-core/dvb_frontend.c')
-rw-r--r--drivers/media/dvb/dvb-core/dvb_frontend.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c
index 7fe9b3fb1e3..7b4b1a5ac42 100644
--- a/drivers/media/dvb/dvb-core/dvb_frontend.c
+++ b/drivers/media/dvb/dvb-core/dvb_frontend.c
@@ -1011,9 +1011,9 @@ void dtv_property_adv_params_sync(struct dvb_frontend *fe)
1011 p->inversion = c->inversion; 1011 p->inversion = c->inversion;
1012 1012
1013 switch(c->modulation) { 1013 switch(c->modulation) {
1014 case _8PSK: 1014 case PSK_8:
1015 case _16APSK: 1015 case APSK_16:
1016 case NBC_QPSK: 1016 case QPSK:
1017 p->u.qpsk.symbol_rate = c->symbol_rate; 1017 p->u.qpsk.symbol_rate = c->symbol_rate;
1018 p->u.qpsk.fec_inner = c->fec_inner; 1018 p->u.qpsk.fec_inner = c->fec_inner;
1019 break; 1019 break;