diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-17 15:36:20 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-20 16:35:51 -0400 |
commit | fe06fe0a4d0f781f8ae0570e4d7e517a81878c1d (patch) | |
tree | bad27deb2805b67d39e025490e68e9572f70f212 /drivers/media/video/bt8xx/bttv-cards.c | |
parent | 818ca4711eb8ec064c1cd5d7657f95ed6bc2bbed (diff) |
V4L/DVB (5861): Use msecs_to_jiffies instead of HZ on bttv, cx88 and saa7134
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/bt8xx/bttv-cards.c')
-rw-r--r-- | drivers/media/video/bt8xx/bttv-cards.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/bt8xx/bttv-cards.c b/drivers/media/video/bt8xx/bttv-cards.c index 2aea09c72093..387cb2122d4f 100644 --- a/drivers/media/video/bt8xx/bttv-cards.c +++ b/drivers/media/video/bt8xx/bttv-cards.c | |||
@@ -4209,7 +4209,7 @@ static int tea5757_read(struct bttv *btv) | |||
4209 | bus_low(btv,btv->mbox_clk); | 4209 | bus_low(btv,btv->mbox_clk); |
4210 | 4210 | ||
4211 | udelay(10); | 4211 | udelay(10); |
4212 | timeout= jiffies + HZ; | 4212 | timeout= jiffies + msecs_to_jiffies(1000); |
4213 | 4213 | ||
4214 | /* wait for DATA line to go low; error if it doesn't */ | 4214 | /* wait for DATA line to go low; error if it doesn't */ |
4215 | while (bus_in(btv,btv->mbox_data) && time_before(jiffies, timeout)) | 4215 | while (bus_in(btv,btv->mbox_data) && time_before(jiffies, timeout)) |