mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
[media] rc: fix ghost keypresses with certain hw
With hardware that has to use ir_raw_event_store_edge to collect IR sample durations, we were not doing an event reset unless IR_MAX_DURATION had passed. That's around 4 seconds. So if someone presses up, then down, with less than 4 seconds in between, they'd get the initial up, then up and down upon pressing down. To fix this, I've lowered the "send a reset event" logic's threshold to the input device's REP_DELAY (defaults to 500ms), and with an saa7134-based GPIO-driven IR receiver in a Hauppauge HVR-1150, I get *much* better behavior out of the remote now. Special thanks to Devin for providing the hardware to investigate this issue. CC: stable@kernel.org CC: Devin Heitmueller <dheitmueller@kernellabs.com> Signed-off-by: Jarod Wilson <jarod@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
c4b0afee3c
commit
3f5c4c7332
@ -114,18 +114,20 @@ int ir_raw_event_store_edge(struct rc_dev *dev, enum raw_event_type type)
|
|||||||
s64 delta; /* ns */
|
s64 delta; /* ns */
|
||||||
DEFINE_IR_RAW_EVENT(ev);
|
DEFINE_IR_RAW_EVENT(ev);
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
|
int delay;
|
||||||
|
|
||||||
if (!dev->raw)
|
if (!dev->raw)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
now = ktime_get();
|
now = ktime_get();
|
||||||
delta = ktime_to_ns(ktime_sub(now, dev->raw->last_event));
|
delta = ktime_to_ns(ktime_sub(now, dev->raw->last_event));
|
||||||
|
delay = MS_TO_NS(dev->input_dev->rep[REP_DELAY]);
|
||||||
|
|
||||||
/* Check for a long duration since last event or if we're
|
/* Check for a long duration since last event or if we're
|
||||||
* being called for the first time, note that delta can't
|
* being called for the first time, note that delta can't
|
||||||
* possibly be negative.
|
* possibly be negative.
|
||||||
*/
|
*/
|
||||||
if (delta > IR_MAX_DURATION || !dev->raw->last_type)
|
if (delta > delay || !dev->raw->last_type)
|
||||||
type |= IR_START_EVENT;
|
type |= IR_START_EVENT;
|
||||||
else
|
else
|
||||||
ev.duration = delta;
|
ev.duration = delta;
|
||||||
|
Loading…
Reference in New Issue
Block a user