[linux-dvb] [PATCH] stb6100: stb6100_init fix
Hans Werner
HWerner4 at gmx.de
Mon Jan 5 16:10:50 CET 2009
Two issues in stb6100_init : the call to stb6100_set_bandwidth needs an argument in Hz
not kHz, and a comment incorrectly says MHz instead of Hz. I don't know if this caused
real problems anywhere.
This patch is for v4l-dvb, but it is also needs to be fixed in s2-liplianin.
diff -r b7e7abe3e3aa linux/drivers/media/dvb/frontends/stb6100.c
--- a/linux/drivers/media/dvb/frontends/stb6100.c
+++ b/linux/drivers/media/dvb/frontends/stb6100.c
@@ -434,11 +434,11 @@ static int stb6100_init(struct dvb_front
status->refclock = 27000000; /* Hz */
status->iqsense = 1;
status->bandwidth = 36000; /* kHz */
- state->bandwidth = status->bandwidth * 1000; /* MHz */
+ state->bandwidth = status->bandwidth * 1000; /* Hz */
state->reference = status->refclock / 1000; /* kHz */
/* Set default bandwidth. */
- return stb6100_set_bandwidth(fe, status->bandwidth);
+ return stb6100_set_bandwidth(fe, state->bandwidth);
}
static int stb6100_get_state(struct dvb_frontend *fe,
--
Release early, release often.
Psssst! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: http://www.gmx.net/de/go/multimessenger
More information about the linux-dvb
mailing list