summaryrefslogtreecommitdiffstats
path: root/drivers/media/cec
diff options
context:
space:
mode:
authorSean Young2018-03-24 13:02:48 +0100
committerMauro Carvalho Chehab2018-04-20 15:16:55 +0200
commit284922562b8170a030fb130ead98224f7211d1ef (patch)
tree6ffbf6c274d87cd037cd15d1417e6ec56c47240f /drivers/media/cec
parentmedia: rc: add ioctl to get the current timeout (diff)
downloadkernel-qcow2-linux-284922562b8170a030fb130ead98224f7211d1ef.tar.gz
kernel-qcow2-linux-284922562b8170a030fb130ead98224f7211d1ef.tar.xz
kernel-qcow2-linux-284922562b8170a030fb130ead98224f7211d1ef.zip
media: rc: per-protocol repeat period and minimum keyup timer
Each IR protocol has its own repeat period. We can minimise the keyup timer to be the protocol period + IR timeout. This makes keys less "sticky" and makes IR more reactive and nicer to use. This feature was previously attempted in commit d57ea877af38 ("media: rc: per-protocol repeat period"), but that did not take the IR timeout into account, and had to be reverted. Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/cec')
-rw-r--r--drivers/media/cec/cec-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/cec/cec-core.c b/drivers/media/cec/cec-core.c
index b0c87f9ea08f..b278ab90b387 100644
--- a/drivers/media/cec/cec-core.c
+++ b/drivers/media/cec/cec-core.c
@@ -322,7 +322,7 @@ struct cec_adapter *cec_allocate_adapter(const struct cec_adap_ops *ops,
adap->rc->allowed_protocols = RC_PROTO_BIT_CEC;
adap->rc->priv = adap;
adap->rc->map_name = RC_MAP_CEC;
- adap->rc->timeout = MS_TO_NS(100);
+ adap->rc->timeout = MS_TO_NS(550);
#endif
return adap;
}