diff options
author | Manu Abraham <abraham.manu@gmail.com> | 2008-02-23 18:02:45 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 17:53:23 -0200 |
commit | 9a286097b027081c073addc2c55775340704c683 (patch) | |
tree | b0dd27cc7e23bb3c2ac83fa94724b05733b52dce /drivers | |
parent | 40e8ce3dba8e9437ed48c88c268615dc0a4bebb2 (diff) | |
download | talos-op-linux-9a286097b027081c073addc2c55775340704c683.tar.gz talos-op-linux-9a286097b027081c073addc2c55775340704c683.zip |
V4L/DVB (9458): Bugfix: gate control needs to be handled
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb/frontends/stb0899_algo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_algo.c b/drivers/media/dvb/frontends/stb0899_algo.c index 3cf9719204f2..750e88c2c8e6 100644 --- a/drivers/media/dvb/frontends/stb0899_algo.c +++ b/drivers/media/dvb/frontends/stb0899_algo.c @@ -146,7 +146,9 @@ static void stb0899_first_subrange(struct stb0899_state *state) u32 bandwidth = 0; if (config->tuner_get_bandwidth) { + stb0899_i2c_gate_ctrl(&state->frontend, 1); config->tuner_get_bandwidth(&state->frontend, &bandwidth); + stb0899_i2c_gate_ctrl(&state->frontend, 0); range = bandwidth - stb0899_carr_width(state) / 2; } |