brcm2708-gpu-fw: update to latest version
[openwrt/staging/dedeckeh.git] / target / linux / brcm2708 / patches-4.4 / 0379-media-rc-core-define-a-default-timeout-for-drivers.patch
1 From 17d27b2171c997d5803172e7a9fa4f474f9687c1 Mon Sep 17 00:00:00 2001
2 From: Eric Nelson <eric@nelint.com>
3 Date: Sat, 3 Oct 2015 08:18:50 -0700
4 Subject: [PATCH 379/423] [media] rc-core: define a default timeout for drivers
5
6 A default timeout value of 125 ms should work for all decoders.
7
8 Declare a constant to help standardize its' use.
9
10 Signed-off-by: Eric Nelson <eric@nelint.com>
11 Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12 ---
13 include/media/rc-core.h | 1 +
14 1 file changed, 1 insertion(+)
15
16 --- a/include/media/rc-core.h
17 +++ b/include/media/rc-core.h
18 @@ -239,6 +239,7 @@ static inline void init_ir_raw_event(str
19 memset(ev, 0, sizeof(*ev));
20 }
21
22 +#define IR_DEFAULT_TIMEOUT MS_TO_NS(125)
23 #define IR_MAX_DURATION 500000000 /* 500 ms */
24 #define US_TO_NS(usec) ((usec) * 1000)
25 #define MS_TO_US(msec) ((msec) * 1000)