summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/bt8xx
diff options
context:
space:
mode:
authorJohannes Stezenbach <devnull@localhost>2005-07-10 13:43:21 +0000
committerJohannes Stezenbach <devnull@localhost>2005-07-10 13:43:21 +0000
commita9a65f1eca5cbeef92c3c688aabb7081b27383d3 (patch)
treeac023751529345eefb37931cf9db0f4afe781f96 /linux/drivers/media/dvb/bt8xx
parent4b77fcd3f666ee4d22f675211403351046cc11ca (diff)
downloadmediapointer-dvb-s2-a9a65f1eca5cbeef92c3c688aabb7081b27383d3.tar.gz
mediapointer-dvb-s2-a9a65f1eca5cbeef92c3c688aabb7081b27383d3.tar.bz2
- stop log spamming when running femon (printk -> dprintk)
- dst_read_status() needs to call dst_get_signal() to get up-to-date information Signed-off-by: Johannes Stezenbach <js@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/bt8xx')
-rw-r--r--linux/drivers/media/dvb/bt8xx/dst.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/bt8xx/dst.c b/linux/drivers/media/dvb/bt8xx/dst.c
index 96a5502e5..5309ecea0 100644
--- a/linux/drivers/media/dvb/bt8xx/dst.c
+++ b/linux/drivers/media/dvb/bt8xx/dst.c
@@ -928,7 +928,7 @@ static int dst_get_signal(struct dst_state* state)
{
int retval;
u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb };
- printk("%s: Getting Signal strength and other parameters !!!!!!!!\n", __FUNCTION__);
+ dprintk("%s: Getting Signal strength and other parameters\n", __FUNCTION__);
if ((state->diseq_flags & ATTEMPT_TUNE) == 0) {
state->decode_lock = state->decode_strength = state->decode_snr = 0;
return 0;
@@ -1228,7 +1228,7 @@ static int dst_read_status(struct dvb_frontend* fe, fe_status_t* status)
*status = 0;
if (state->diseq_flags & HAS_LOCK) {
-// dst_get_signal(state); // don't require(?) to ask MCU
+ dst_get_signal(state);
if (state->decode_lock)
*status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI;
}