diff options
author | Manu Abraham <abraham.manu@gmail.com> | 2007-11-19 20:44:47 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 20:53:21 +0100 |
commit | 27a330d1240ffeaca8c7cf2a2eb6a5fbeef3c4ec (patch) | |
tree | 6b99e4e338f9aed063bf991031b020e364e70e2b /drivers/media/dvb/frontends/stb0899_drv.c | |
parent | V4L/DVB (9441): Code simplification: clock is already initialized, no need to... (diff) | |
download | linux-27a330d1240ffeaca8c7cf2a2eb6a5fbeef3c4ec.tar.xz linux-27a330d1240ffeaca8c7cf2a2eb6a5fbeef3c4ec.zip |
V4L/DVB (9442): Revert back previous change to 90MHz
Note:
* At High Symbol Rates we do not have enouph machine cycles to handle the
incoming symbols and hence might run into problems at the very end of the
specified definition
* Most of the equations have been calculated for a master clock of 99 MHz,
running at 90MHz, raises lot of issues such as the need to recalculate
all of them , which is eventually very painful.
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/stb0899_drv.c')
-rw-r--r-- | drivers/media/dvb/frontends/stb0899_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_drv.c b/drivers/media/dvb/frontends/stb0899_drv.c index 862b08685fb0..d21396450259 100644 --- a/drivers/media/dvb/frontends/stb0899_drv.c +++ b/drivers/media/dvb/frontends/stb0899_drv.c @@ -1575,7 +1575,7 @@ static enum dvbfe_search stb0899_search(struct dvb_frontend *fe, struct dvbfe_pa if (i_params->srate <= 5000000) stb0899_set_mclk(state, 76500000); else - stb0899_set_mclk(state, 90000000); + stb0899_set_mclk(state, 99000000); switch (state->delsys) { case DVBFE_DELSYS_DVBS: |