Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] rc-core: define a default timeout for drivers

A default timeout value of 125 ms should work for all decoders.

Declare a constant to help standardize its' use.

Signed-off-by: Eric Nelson <eric@nelint.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>

authored by

Eric Nelson and committed by
Mauro Carvalho Chehab
c8e1bbc5 a2d1e1ed

+1
+1
include/media/rc-core.h
··· 239 239 memset(ev, 0, sizeof(*ev)); 240 240 } 241 241 242 + #define IR_DEFAULT_TIMEOUT MS_TO_NS(125) 242 243 #define IR_MAX_DURATION 500000000 /* 500 ms */ 243 244 #define US_TO_NS(usec) ((usec) * 1000) 244 245 #define MS_TO_US(msec) ((msec) * 1000)