aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/stb0899_drv.c
diff options
context:
space:
mode:
authorReinhard Nissl <rnissl@gmx.de>2008-01-18 20:09:52 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-29 17:53:21 -0200
commit02ec9d8ff4fba95255c277585aa5d0f33ec3adef (patch)
treedddccb29670c5f94b4345b305bb0d529cecbdd67 /drivers/media/dvb/frontends/stb0899_drv.c
parent89693b7d7bd965c18e9ce1c68eef2b52f9c2b745 (diff)
downloadkernel_samsung_smdk4412-02ec9d8ff4fba95255c277585aa5d0f33ec3adef.zip
kernel_samsung_smdk4412-02ec9d8ff4fba95255c277585aa5d0f33ec3adef.tar.gz
kernel_samsung_smdk4412-02ec9d8ff4fba95255c277585aa5d0f33ec3adef.tar.bz2
V4L/DVB (9446): Bug Fix an overflow in bandwidth calculation
Signed-off-by: Reinhard Nissl <rnissl@gmx.de> Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/stb0899_drv.c')
-rw-r--r--drivers/media/dvb/frontends/stb0899_drv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_drv.c b/drivers/media/dvb/frontends/stb0899_drv.c
index 4dc741d..3468f59e 100644
--- a/drivers/media/dvb/frontends/stb0899_drv.c
+++ b/drivers/media/dvb/frontends/stb0899_drv.c
@@ -1593,7 +1593,7 @@ static enum dvbfe_search stb0899_search(struct dvb_frontend *fe, struct dvbfe_pa
/* What to do for tuners having no bandwidth setup ? */
if (state->config->tuner_set_bandwidth)
- state->config->tuner_set_bandwidth(fe, (135 * (stb0899_carr_width(state) + SearchRange)) / 100);
+ state->config->tuner_set_bandwidth(fe, (13 * (stb0899_carr_width(state) + SearchRange)) / 10);
if (state->config->tuner_get_bandwidth)
state->config->tuner_get_bandwidth(fe, &internal->tuner_bw);
/* Set DVB-S1 AGC */