summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/stv0367.c
diff options
context:
space:
mode:
authorMaks Naumov <maksqwe1@ukr.net>2014-08-15 16:23:20 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-09-22 17:31:52 -0300
commiteafeda9666f634abc1b133ee4b578708269d99ab (patch)
treef47c5d1cecaa251e465d9c7f6a8b433affe686cd /drivers/media/dvb-frontends/stv0367.c
parent78e719a5f30b7017b575c08220f4480e3140c6f1 (diff)
downloadop-kernel-dev-eafeda9666f634abc1b133ee4b578708269d99ab.zip
op-kernel-dev-eafeda9666f634abc1b133ee4b578708269d99ab.tar.gz
[media] media: stv0367: fix frontend modulation initialization with FE_CAB_MOD_QAM256
It was using the wrong constant for QAM256 on get_frontend. Signed-off-by: Maks Naumov <maksqwe1@ukr.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/stv0367.c')
-rw-r--r--drivers/media/dvb-frontends/stv0367.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/stv0367.c b/drivers/media/dvb-frontends/stv0367.c
index 59f622a..7f01068 100644
--- a/drivers/media/dvb-frontends/stv0367.c
+++ b/drivers/media/dvb-frontends/stv0367.c
@@ -3163,7 +3163,7 @@ static int stv0367cab_get_frontend(struct dvb_frontend *fe)
case FE_CAB_MOD_QAM128:
p->modulation = QAM_128;
break;
- case QAM_256:
+ case FE_CAB_MOD_QAM256:
p->modulation = QAM_256;
break;
default:
OpenPOWER on IntegriCloud