diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-07-31 23:37:19 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-08-02 16:43:48 -0300 |
commit | 8dc09004978538d211ccc36b5046919489e30a55 (patch) | |
tree | f61e8136b83886f820cd9e7f66f4382d17bc2334 | |
parent | 72b393106bddc9f0a1ab502b4c8c5793a0441a30 (diff) | |
download | linux-3.10-8dc09004978538d211ccc36b5046919489e30a55.tar.gz linux-3.10-8dc09004978538d211ccc36b5046919489e30a55.tar.bz2 linux-3.10-8dc09004978538d211ccc36b5046919489e30a55.zip |
V4L/DVB: dib0700: avoid bad repeat
a 250ms delay is too low for this device. It ends by producing false
repeat events. Increase the delay time to 500 ms to avoid troubles.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb/dvb-usb/dib0700_core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/dvb/dvb-usb/dib0700_core.c b/drivers/media/dvb/dvb-usb/dib0700_core.c index 164fa9c3bec..a05d9559222 100644 --- a/drivers/media/dvb/dvb-usb/dib0700_core.c +++ b/drivers/media/dvb/dvb-usb/dib0700_core.c @@ -648,6 +648,9 @@ static int dib0700_probe(struct usb_interface *intf, else dev->props.rc.core.bulk_mode = false; + /* Need a higher delay, to avoid wrong repeat */ + dev->rc_input_dev->rep[REP_DELAY] = 500; + dib0700_rc_setup(dev); return 0; |