aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/stb0899_drv.c
diff options
context:
space:
mode:
authorManu Abraham <manu@linuxtv.org>2007-11-10 16:59:16 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-29 17:53:21 -0200
commit72f7841613a9f6e2c013ad9ff61efb5fc16a89f2 (patch)
treec0970b99a292fb18490fbcde0aecd2e1a50c3cc3 /drivers/media/dvb/frontends/stb0899_drv.c
parentV4L/DVB (9440): Bug in previous commit (diff)
downloadlinux-dev-72f7841613a9f6e2c013ad9ff61efb5fc16a89f2.tar.xz
linux-dev-72f7841613a9f6e2c013ad9ff61efb5fc16a89f2.zip
V4L/DVB (9441): Code simplification: clock is already initialized, no need to initialize again.
Thanks to Marko Schluessler <marco@lordzodiac.de> for pointing it out Signed-off-by: Marko Schluessler <marco@lordzodiac.de> 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.c2
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 0b2a908f1a5f..862b08685fb0 100644
--- a/drivers/media/dvb/frontends/stb0899_drv.c
+++ b/drivers/media/dvb/frontends/stb0899_drv.c
@@ -550,7 +550,7 @@ int stb0899_write_reg(struct stb0899_state *state, unsigned int reg, u8 data)
*/
static u32 stb0899_get_mclk(struct stb0899_state *state)
{
- u32 mclk = 90000000, div = 0;
+ u32 mclk = 0, div = 0;
div = stb0899_read_reg(state, STB0899_NCOARSE);
mclk = (div + 1) * state->config->xtal_freq / 6;