diff options
author | Andrew de Quincy <devnull@localhost> | 2004-02-26 11:49:06 +0000 |
---|---|---|
committer | Andrew de Quincy <devnull@localhost> | 2004-02-26 11:49:06 +0000 |
commit | c08db094ca2fbfecad2261574f5c08d3aad6dbab (patch) | |
tree | d6d9f0ba993224a256555dbfdb5fb5fc9b45e50a /linux/drivers/media | |
parent | 18926d20af43b5bf340475076cc90efd72487916 (diff) | |
download | mediapointer-dvb-s2-c08db094ca2fbfecad2261574f5c08d3aad6dbab.tar.gz mediapointer-dvb-s2-c08db094ca2fbfecad2261574f5c08d3aad6dbab.tar.bz2 |
Upped fast scan delay to 50ms; seems to be more reliable
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/dvb_frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c index 864c3b5b8..3b8225f9e 100644 --- a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c +++ b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c @@ -559,7 +559,7 @@ static int dvb_frontend_thread (void *data) // fast zigzag if (fe->state & FESTATE_SEARCHING_FAST) { - delay = (HZ * 30) / 1000; // hardcoded fast zigzag scan delay of 30ms + delay = (HZ * 50) / 1000; // hardcoded fast zigzag scan delay of 50ms // OK, if we've run out of trials at the fast speed. Drop back to // slow for the _next_ attempt |