diff options
author | Janne Huttunen <jahuttun@gmail.com> | 2012-05-30 05:28:46 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-06-18 16:35:06 -0300 |
commit | cba5d0b20e7c75dc06e3a609059f17f11c843d94 (patch) | |
tree | 2af7ce09063edacd32c523cfa72a8d32a811121d /drivers/media | |
parent | b83f671566f8a3b9796bed7416d25e07866ff408 (diff) | |
download | talos-obmc-linux-cba5d0b20e7c75dc06e3a609059f17f11c843d94.tar.gz talos-obmc-linux-cba5d0b20e7c75dc06e3a609059f17f11c843d94.zip |
[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>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/dvb/frontends/cxd2820r_c.c | 2 |
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 945404991529..ed3b0ba624de 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; |