]> git.karo-electronics.de Git - linux-beck.git/commitdiff
V4L/DVB (12312): stv0900: fix i2c repeater configuration must be set to manual
authorAbylay Ospan <aospan@netup.ru>
Sun, 19 Jul 2009 21:15:45 +0000 (18:15 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 12 Sep 2009 15:18:03 +0000 (12:18 -0300)
In automatic mode every stop event on SDA line ends repetition.
However, in  NetUP Dual card on the same i2c bus we have several devices.
If someone using both adapters to lock simultaneously or working with CAM interface
during lock procedure, it lead to end repetition prematurely quite often.
Set stv0900 i2c repeater to manual mode prevents such situation.

Signed-off-by: Abylay Ospan <aospan@netup.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/frontends/stv0900_core.c

index 1da045fbb4ef225def8c67afac3b6d528db668e6..3bde3324a032b4fb0711465d3d0bd41303d567f8 100644 (file)
@@ -230,8 +230,8 @@ enum fe_stv0900_error stv0900_initialize(struct stv0900_internal *i_params)
                        stv0900_write_reg(i_params, R0900_P2_DMDISTATE, 0x5c);
                        stv0900_write_reg(i_params, R0900_P1_TNRCFG, 0x6c);
                        stv0900_write_reg(i_params, R0900_P2_TNRCFG, 0x6f);
-                       stv0900_write_reg(i_params, R0900_P1_I2CRPT, 0x24);
-                       stv0900_write_reg(i_params, R0900_P2_I2CRPT, 0x24);
+                       stv0900_write_reg(i_params, R0900_P1_I2CRPT, 0x20);
+                       stv0900_write_reg(i_params, R0900_P2_I2CRPT, 0x20);
                        stv0900_write_reg(i_params, R0900_NCOARSE, 0x13);
                        msleep(3);
                        stv0900_write_reg(i_params, R0900_I2CCFG, 0x08);
@@ -370,8 +370,8 @@ static int stv0900_i2c_gate_ctrl(struct dvb_frontend *fe, int enable)
        u32 fi2c;
 
        dmd_reg(fi2c, F0900_P1_I2CT_ON, F0900_P2_I2CT_ON);
-       if (enable)
-               stv0900_write_bits(i_params, fi2c, 1);
+
+       stv0900_write_bits(i_params, fi2c, enable);
 
        return 0;
 }