V4L/DVB (4653): Misc fixes for Nova-T 500

- forward the clock to the slave undivided
- when sleeping the 3000 do not shutdown the clock

Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
diff --git a/drivers/media/dvb/frontends/dib3000mc.c b/drivers/media/dvb/frontends/dib3000mc.c
index 0b051c7..ccc813b 100644
--- a/drivers/media/dvb/frontends/dib3000mc.c
+++ b/drivers/media/dvb/frontends/dib3000mc.c
@@ -312,10 +312,10 @@
 		dib3000mc_write_word(state, 175,  0x0000);
 		dib3000mc_write_word(state, 1032, 0x012C);
 	}
-	dib3000mc_write_word(state, 1033, 0);
+	dib3000mc_write_word(state, 1033, 0x0000);
 
 	// P_clk_cfg
-	dib3000mc_write_word(state, 1037, 12592);
+	dib3000mc_write_word(state, 1037, 0x3130);
 
 	// other configurations
 
@@ -412,10 +412,9 @@
 {
 	struct dib3000mc_state *state = demod->demodulator_priv;
 
-	dib3000mc_write_word(state, 1037, dib3000mc_read_word(state, 1037) | 0x0003);
 	dib3000mc_write_word(state, 1031, 0xFFFF);
 	dib3000mc_write_word(state, 1032, 0xFFFF);
-	dib3000mc_write_word(state, 1033, 0xFFF4);   // ****  Bin2
+	dib3000mc_write_word(state, 1033, 0xFFF0);
 
     return 0;
 }
@@ -828,6 +827,8 @@
 
 	dibx000_init_i2c_master(&st->i2c_master, DIB3000MC, st->i2c_adap, st->i2c_addr);
 
+	dib3000mc_write_word(st, 1037, 0x3130);
+
 	return demod;
 
 error: