From: Reinhard Nissl Date: Mon, 21 Jan 2008 19:15:14 +0000 (-0300) Subject: V4L/DVB (9447): stb6100: improve rounding X-Git-Tag: v2.6.29-rc1~556^2~497 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=6f6c268b0f1f6846584162053a47d3aadf34a3c4;p=~shefty%2Frdma-dev.git V4L/DVB (9447): stb6100: improve rounding Optimization: Round the requested value to achieve a +/-1MHz error instead of +0/-2MHz Signed-off-by: Reinhard Nissl Signed-off-by: Manu Abraham Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/dvb/frontends/stb6100.c b/drivers/media/dvb/frontends/stb6100.c index 0259a468950..5c6d06775dd 100644 --- a/drivers/media/dvb/frontends/stb6100.c +++ b/drivers/media/dvb/frontends/stb6100.c @@ -276,7 +276,7 @@ static int stb6100_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) else if (bandwidth <= 5000000) /* bw/2 min = 5Mhz for F=0 */ tmp = 0; else /* if 5 < bw/2 < 36 */ - tmp = bandwidth / 1000000 - 5; + tmp = (bandwidth + 500000) / 1000000 - 5; /* Turn on LPF bandwidth setting clock control, * set bandwidth, wait 10ms, turn off.