projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78e719a
)
[media] media: stv0367: fix frontend modulation initialization with FE_CAB_MOD_QAM256
author
Maks Naumov
<maksqwe1@ukr.net>
Fri, 15 Aug 2014 19:23:20 +0000
(16:23 -0300)
committer
Mauro Carvalho Chehab
<mchehab@osg.samsung.com>
Mon, 22 Sep 2014 20:31:52 +0000
(17:31 -0300)
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>
drivers/media/dvb-frontends/stv0367.c
patch
|
blob
|
history
diff --git
a/drivers/media/dvb-frontends/stv0367.c
b/drivers/media/dvb-frontends/stv0367.c
index 59f622ae80e82eff98c94e9fec3ebbfc2e970fd1..7f010683dbf8cd3307115e160d9beac676da5d6f 100644
(file)
--- 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_QAM
256:
p->modulation = QAM_256;
break;
default: