diff options
author | Sean Young <sean@mess.org> | 2021-09-15 18:14:07 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-09-30 10:08:00 +0200 |
commit | c73ba202a851c0b611ef2c25e568fadeff5e667f (patch) | |
tree | 988b6e887f89d33ce9bb73ec4ff606f4db136e75 /drivers/media/i2c/ir-kbd-i2c.c | |
parent | d7f26849ed7cc875d0ff7480c2efebeeccea2bad (diff) | |
download | linux-c73ba202a851c0b611ef2c25e568fadeff5e667f.tar.gz linux-c73ba202a851c0b611ef2c25e568fadeff5e667f.tar.bz2 linux-c73ba202a851c0b611ef2c25e568fadeff5e667f.zip |
media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers
The IR receiver has two issues:
- Sometimes there is no response to a button press
- Sometimes a button press is repeated when it should not have been
Hanging the polling interval fixes this behaviour.
Link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=994050
Cc: stable@vger.kernel.org
Suggested-by: Joaquín Alberto Calderón Pozo <kini_calderon@hotmail.com>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/i2c/ir-kbd-i2c.c')
-rw-r--r-- | drivers/media/i2c/ir-kbd-i2c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/i2c/ir-kbd-i2c.c b/drivers/media/i2c/ir-kbd-i2c.c index 92376592455e..56674173524f 100644 --- a/drivers/media/i2c/ir-kbd-i2c.c +++ b/drivers/media/i2c/ir-kbd-i2c.c @@ -791,6 +791,7 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id) rc_proto = RC_PROTO_BIT_RC5 | RC_PROTO_BIT_RC6_MCE | RC_PROTO_BIT_RC6_6A_32; ir_codes = RC_MAP_HAUPPAUGE; + ir->polling_interval = 125; probe_tx = true; break; } |