diff options
author | Andrew de Quincey <adq_dvb@lidskialf.net> | 2006-11-16 22:31:04 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-11-26 11:52:37 +0100 |
commit | c4e46b9567669eb5e1182d4b12c2d889ce27da64 (patch) | |
tree | 112e10dda81026576815e1175da710a3fc2fb617 | |
parent | [PATCH] uml: make execvp safe for our usage (diff) | |
download | linux-c4e46b9567669eb5e1182d4b12c2d889ce27da64.tar.xz linux-c4e46b9567669eb5e1182d4b12c2d889ce27da64.zip |
V4L/DVB (4831): Fix tuning on older budget DVBS cards.
Fixes to DISEQC on these cards inadvertently broke normal tone/voltage
signalling. This restores the necessary function.
Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/dvb/ttpci/budget.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/dvb/ttpci/budget.c b/drivers/media/dvb/ttpci/budget.c index e58f0391e9d1..e28617bd5641 100644 --- a/drivers/media/dvb/ttpci/budget.c +++ b/drivers/media/dvb/ttpci/budget.c @@ -382,6 +382,7 @@ static void frontend_init(struct budget *budget) if (budget->dvb_frontend) { budget->dvb_frontend->ops.tuner_ops.set_params = alps_bsru6_tuner_set_params; budget->dvb_frontend->tuner_priv = &budget->i2c_adap; + budget->dvb_frontend->ops.set_tone = budget_set_tone; break; } break; |