summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/dvb-core
diff options
context:
space:
mode:
authorSteven Toth <stoth@linuxtv.org>2008-10-06 20:06:48 -0400
committerSteven Toth <stoth@linuxtv.org>2008-10-06 20:06:48 -0400
commit31c81249db3eef850974230edaf630efdadfcb22 (patch)
treeb2aad2684bda86649d51e7a5a1b4ace4876c790b /linux/drivers/media/dvb/dvb-core
parent521660205e8430f1e9b94a20667430407f874cf1 (diff)
downloadmediapointer-dvb-s2-31c81249db3eef850974230edaf630efdadfcb22.tar.gz
mediapointer-dvb-s2-31c81249db3eef850974230edaf630efdadfcb22.tar.bz2
S2API: Change _8PSK / _16APSK to PSK_8 and APSK_16
From: Steven Toth <stoth@linuxtv.org> ... 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. Priority: normal Signed-off-by: Steven Toth <stoth@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/dvb-core')
-rw-r--r--linux/drivers/media/dvb/dvb-core/dvb_frontend.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
index 98cb675e2..b2b5515e2 100644
--- a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
+++ b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
@@ -1081,9 +1081,9 @@ void dtv_property_adv_params_sync(struct dvb_frontend *fe)
p->inversion = c->inversion;
switch(c->modulation) {
- case _8PSK:
- case _16APSK:
- case NBC_QPSK:
+ case PSK_8:
+ case APSK_16:
+ case QPSK:
p->u.qpsk.symbol_rate = c->symbol_rate;
p->u.qpsk.fec_inner = c->fec_inner;
break;