summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJanne Huttunen <jahuttun@gmail.com>2012-05-30 05:28:46 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-06-18 16:35:06 -0300
commitcba5d0b20e7c75dc06e3a609059f17f11c843d94 (patch)
tree2af7ce09063edacd32c523cfa72a8d32a811121d
parentb83f671566f8a3b9796bed7416d25e07866ff408 (diff)
downloadop-kernel-dev-cba5d0b20e7c75dc06e3a609059f17f11c843d94.zip
op-kernel-dev-cba5d0b20e7c75dc06e3a609059f17f11c843d94.tar.gz
[media] cxd2820r: Fix an incorrect modulation type bitmask
Fix an incorrect modulation type bitmask. This allows QAM256 also to be correctly reported. Signed-off-by: Janne Huttunen <jahuttun@gmail.com> Acked-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/frontends/cxd2820r_c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/cxd2820r_c.c b/drivers/media/dvb/frontends/cxd2820r_c.c
index 9454049..ed3b0ba6 100644
--- a/drivers/media/dvb/frontends/cxd2820r_c.c
+++ b/drivers/media/dvb/frontends/cxd2820r_c.c
@@ -121,7 +121,7 @@ int cxd2820r_get_frontend_c(struct dvb_frontend *fe)
if (ret)
goto error;
- switch ((buf[0] >> 0) & 0x03) {
+ switch ((buf[0] >> 0) & 0x07) {
case 0:
c->modulation = QAM_16;
break;
OpenPOWER on IntegriCloud