aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/media/rc-core.h
diff options
context:
space:
mode:
authorAntti Seppälä <a.seppala@gmail.com>2015-03-31 14:48:12 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-05-14 14:37:03 -0300
commitda7ee60b03bd66bb10974d7444aa444de6391312 (patch)
treed123bf7671c6878f6724037c0464d87894ae2d07 /include/media/rc-core.h
parent[media] rc: rc-loopback: Add loopback of filter scancodes (diff)
downloadwireguard-linux-da7ee60b03bd66bb10974d7444aa444de6391312.tar.xz
wireguard-linux-da7ee60b03bd66bb10974d7444aa444de6391312.zip
[media] rc: nuvoton-cir: Add support for writing wakeup samples via sysfs filter callback
Nuvoton-cir utilizes the encoding capabilities of rc-core to convert scancodes from user space to pulse/space format understood by the underlying hardware. Converted samples are then written to the wakeup fifo along with other necessary configuration to enable wake up functionality. Signed-off-by: Antti Seppälä <a.seppala@gmail.com> Signed-off-by: James Hogan <james@albanarts.com> Cc: Jarod Wilson <jarod@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'include/media/rc-core.h')
-rw-r--r--include/media/rc-core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/media/rc-core.h b/include/media/rc-core.h
index 9ae433c7f14b..f1cb9daba489 100644
--- a/include/media/rc-core.h
+++ b/include/media/rc-core.h
@@ -246,6 +246,7 @@ static inline void init_ir_raw_event(struct ir_raw_event *ev)
#define US_TO_NS(usec) ((usec) * 1000)
#define MS_TO_US(msec) ((msec) * 1000)
#define MS_TO_NS(msec) ((msec) * 1000 * 1000)
+#define NS_TO_US(nsec) DIV_ROUND_UP(nsec, 1000L)
void ir_raw_event_handle(struct rc_dev *dev);
int ir_raw_event_store(struct rc_dev *dev, struct ir_raw_event *ev);