aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2014-07-08 02:48:28 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-07-14 21:03:59 -0300
commitc2c1a6e5851fe354d39e5b7907c6c9d0a997ec16 (patch)
treeecc6e2768588ecd3e057bbedb00d439bcc8bc3ec
parentb32725e84c02b4d01472770b96d1b33737b23b6d (diff)
downloadblackfin-linux-c2c1a6e5851fe354d39e5b7907c6c9d0a997ec16.tar.gz
[media] tda10071: fix returned symbol rate calculation
Detected symbol rate value was returned too small. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r--drivers/media/dvb-frontends/tda10071.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/tda10071.c b/drivers/media/dvb-frontends/tda10071.c
index d590798a63674a..9619be5d482718 100644
--- a/drivers/media/dvb-frontends/tda10071.c
+++ b/drivers/media/dvb-frontends/tda10071.c
@@ -860,7 +860,7 @@ static int tda10071_get_frontend(struct dvb_frontend *fe)
if (ret)
goto error;
- c->symbol_rate = (buf[0] << 16) | (buf[1] << 8) | (buf[2] << 0);
+ c->symbol_rate = ((buf[0] << 16) | (buf[1] << 8) | (buf[2] << 0)) * 1000;
return ret;
error: