Commit 800846c4 authored by Jasmin Jessich's avatar Jasmin Jessich Committed by Mauro Carvalho Chehab

media: rc: use ktime accessor functions

Prefer using accessor functions so we are not dependent on the ktime_t
type.
Signed-off-by: default avatarJasmin Jessich <jasmin@anw.at>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 9a45bf28
...@@ -106,7 +106,7 @@ int ir_raw_event_store_edge(struct rc_dev *dev, bool pulse) ...@@ -106,7 +106,7 @@ int ir_raw_event_store_edge(struct rc_dev *dev, bool pulse)
return -EINVAL; return -EINVAL;
now = ktime_get(); now = ktime_get();
ev.duration = ktime_sub(now, dev->raw->last_event); ev.duration = ktime_to_ns(ktime_sub(now, dev->raw->last_event));
ev.pulse = !pulse; ev.pulse = !pulse;
rc = ir_raw_event_store(dev, &ev); rc = ir_raw_event_store(dev, &ev);
...@@ -474,18 +474,19 @@ EXPORT_SYMBOL(ir_raw_encode_scancode); ...@@ -474,18 +474,19 @@ EXPORT_SYMBOL(ir_raw_encode_scancode);
static void edge_handle(unsigned long arg) static void edge_handle(unsigned long arg)
{ {
struct rc_dev *dev = (struct rc_dev *)arg; struct rc_dev *dev = (struct rc_dev *)arg;
ktime_t interval = ktime_get() - dev->raw->last_event; ktime_t interval = ktime_sub(ktime_get(), dev->raw->last_event);
if (interval >= dev->timeout) { if (ktime_to_ns(interval) >= dev->timeout) {
DEFINE_IR_RAW_EVENT(ev); DEFINE_IR_RAW_EVENT(ev);
ev.timeout = true; ev.timeout = true;
ev.duration = interval; ev.duration = ktime_to_ns(interval);
ir_raw_event_store(dev, &ev); ir_raw_event_store(dev, &ev);
} else { } else {
mod_timer(&dev->raw->edge_handle, mod_timer(&dev->raw->edge_handle,
jiffies + nsecs_to_jiffies(dev->timeout - interval)); jiffies + nsecs_to_jiffies(dev->timeout -
ktime_to_ns(interval)));
} }
ir_raw_event_handle(dev); ir_raw_event_handle(dev);
......
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