summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/stv0367.c
diff options
context:
space:
mode:
authorMaks Naumov2014-08-15 21:23:20 +0200
committerMauro Carvalho Chehab2014-09-22 22:31:52 +0200
commiteafeda9666f634abc1b133ee4b578708269d99ab (patch)
treef47c5d1cecaa251e465d9c7f6a8b433affe686cd /drivers/media/dvb-frontends/stv0367.c
parent[media] em28xx-input: i2c IR decoders: improve i2c_client handling (diff)
downloadkernel-qcow2-linux-eafeda9666f634abc1b133ee4b578708269d99ab.tar.gz
kernel-qcow2-linux-eafeda9666f634abc1b133ee4b578708269d99ab.tar.xz
kernel-qcow2-linux-eafeda9666f634abc1b133ee4b578708269d99ab.zip
[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 59f622ae80e8..7f010683dbf8 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: