diff options
author | Andrew de Quincy <devnull@localhost> | 2004-04-23 08:55:47 +0000 |
---|---|---|
committer | Andrew de Quincy <devnull@localhost> | 2004-04-23 08:55:47 +0000 |
commit | 40071535e29c93386ddaff16e75441700568e411 (patch) | |
tree | 195c775b755b2ea4171b16786793c8c06b6cbb59 | |
parent | cc8e45a849e3335b7cbf0704b21192fa9a4f9d44 (diff) | |
download | mediapointer-dvb-s2-40071535e29c93386ddaff16e75441700568e411.tar.gz mediapointer-dvb-s2-40071535e29c93386ddaff16e75441700568e411.tar.bz2 |
Updated timeout to 800ms at suggestion from Damian Ivereigh
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda1004x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda1004x.c b/linux/drivers/media/dvb/frontends/tda1004x.c index 162a7794e..18292ae8e 100644 --- a/linux/drivers/media/dvb/frontends/tda1004x.c +++ b/linux/drivers/media/dvb/frontends/tda1004x.c @@ -1367,7 +1367,7 @@ static int tda1004x_ioctl(struct dvb_frontend *fe, unsigned int cmd, void *arg) case FE_GET_TUNE_SETTINGS: { struct dvb_frontend_tune_settings* fesettings = (struct dvb_frontend_tune_settings*) arg; - fesettings->min_delay_ms = 300; + fesettings->min_delay_ms = 800; fesettings->step_size = 166667; fesettings->max_drift = 166667*2; return 0; |