summaryrefslogtreecommitdiff
path: root/linux/drivers
diff options
context:
space:
mode:
authorAndrew de Quincy <devnull@localhost>2004-03-12 10:54:44 +0000
committerAndrew de Quincy <devnull@localhost>2004-03-12 10:54:44 +0000
commite91d096ac2abd65339d6310d7f1b39ff72909c26 (patch)
treed75191be4ee64f042cfbd9f94b1a056d910bd06a /linux/drivers
parentab626070e30987a939b0b24bcfc1c2354f26ef9f (diff)
downloadmediapointer-dvb-s2-e91d096ac2abd65339d6310d7f1b39ff72909c26.tar.gz
mediapointer-dvb-s2-e91d096ac2abd65339d6310d7f1b39ff72909c26.tar.bz2
Increased to a more suitable min_delay for tda1004x
Diffstat (limited to 'linux/drivers')
-rw-r--r--linux/drivers/media/dvb/frontends/tda1004x.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda1004x.c b/linux/drivers/media/dvb/frontends/tda1004x.c
index da5614058..8c29d7fc7 100644
--- a/linux/drivers/media/dvb/frontends/tda1004x.c
+++ b/linux/drivers/media/dvb/frontends/tda1004x.c
@@ -1340,6 +1340,15 @@ static int tda1004x_ioctl(struct dvb_frontend *fe, unsigned int cmd, void *arg)
tda_state->initialised = 1;
return status;
+ case FE_GET_TUNE_SETTINGS:
+ {
+ struct dvb_frontend_tune_settings* fesettings = (struct dvb_frontend_tune_settings*) arg;
+ fesettings->min_delay_ms = 100;
+ fesettings->step_size = 166667;
+ fesettings->max_drift = 166667*2;
+ return 0;
+ }
+
default:
return -EOPNOTSUPP;
}