2005-09-06 04:22:40

by Nish Aravamudan

[permalink] [raw]
Subject: Re: [PATCH 23/24] V4L: Include saa6588 compiler option and files / Fixes comments on tuner.h

On 9/5/05, [email protected] <[email protected]> wrote:
>

Can this:

+static void saa6588_work(void *data)
+{
+ struct saa6588 *s = (struct saa6588 *)data;
+
+ saa6588_i2c_poll(s);
+ mod_timer(&s->timer, jiffies + HZ / 50); /* 20 msec */
+}
+

be:

mod_timer(&s->timer, jiffies + msecs_to_jiffies(20));

?

Thanks,
Nish