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