From: Roel Kluin Date: Wed, 11 Feb 2009 09:34:11 +0000 (-0300) Subject: V4L/DVB: calibration still successful at 10 X-Git-Url: http://pilppa.org/gitweb/?a=commitdiff_plain;h=7d979a86a95036a0c765aaa90f8bcefb4096a406;p=linux-2.6-omap-h63xx.git V4L/DVB: calibration still successful at 10 With while (i++ < 10) { ... } i can reach 11, so callibration still succeeds at i == 10. Signed-off-by: Roel Kluin Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/common/tuners/mt2060.c b/drivers/media/common/tuners/mt2060.c index 12206d75dd4..c7abe3d8f90 100644 --- a/drivers/media/common/tuners/mt2060.c +++ b/drivers/media/common/tuners/mt2060.c @@ -278,7 +278,7 @@ static void mt2060_calibrate(struct mt2060_priv *priv) while (i++ < 10 && mt2060_readreg(priv, REG_MISC_STAT, &b) == 0 && (b & (1 << 6)) == 0) msleep(20); - if (i < 10) { + if (i <= 10) { mt2060_readreg(priv, REG_FM_FREQ, &priv->fmfreq); // now find out, what is fmreq used for :) dprintk("calibration was successful: %d", (int)priv->fmfreq); } else