Commit 782dc2d5 authored by Puranjay Mohan's avatar Puranjay Mohan Committed by Mauro Carvalho Chehab

media: pci: cx88: Change the type of 'missed' to u64

Callers of hrtimer_forward_now() should save the return value in u64.
change type of missed from unsigned long to u64.
Signed-off-by: default avatarPuranjay Mohan <puranjay12@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: type changed, so %ld -> %llu in printk]
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 77ae46e1
...@@ -167,14 +167,14 @@ static void cx88_ir_handle_key(struct cx88_IR *ir) ...@@ -167,14 +167,14 @@ static void cx88_ir_handle_key(struct cx88_IR *ir)
static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer) static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
{ {
unsigned long missed; u64 missed;
struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer); struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
cx88_ir_handle_key(ir); cx88_ir_handle_key(ir);
missed = hrtimer_forward_now(&ir->timer, missed = hrtimer_forward_now(&ir->timer,
ktime_set(0, ir->polling * 1000000)); ktime_set(0, ir->polling * 1000000));
if (missed > 1) if (missed > 1)
ir_dprintk("Missed ticks %ld\n", missed - 1); ir_dprintk("Missed ticks %llu\n", missed - 1);
return HRTIMER_RESTART; return HRTIMER_RESTART;
} }
......
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