Commit f7518bd2 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (5859): use msecs_to_jiffies on InfraRed RC5 timeout

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 09df5cbe
......@@ -345,8 +345,8 @@ void ir_rc5_timer_end(unsigned long data)
}
/* Set/reset key-up timer */
timeout = current_jiffies + (500 + ir->rc5_key_timeout
* HZ) / 1000;
timeout = current_jiffies +
msecs_to_jiffies(ir->rc5_key_timeout);
mod_timer(&ir->timer_keyup, timeout);
/* Save code for repeat test */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment