<div>I saw same topic on the list. Did anyone had solved the problem with nova-s plus not locking. I use 2.6.24 and latest HG tree and my other cx88 base card works just fine but nova-s plus shows strenght of 98% but signal noise goes up and down and there is no lock on it. It Works just fine with other cards. I saw this patch does it realy disable the voltage protection on nova-s?</div>
<div>Are there any patches that I can test get my nova-s working ?</div>
<div>*** linux/drivers/media/dvb/frontends/isl6421.c 2006-11-25 23:05:44.000000000 +0100<br>--- linux/drivers/media/dvb/frontends/isl6421.c 2006-11-25 23:44:11.000000000 +0100<br>***************<br>*** 44,49 ****<br>
--- 44,51 ----<br> u8 i2c_addr;<br> };<br><br>+ static int dcl=1; // dynamic current limit on/off, default on<br>+<br> static int isl6421_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)<br>
{<br> struct isl6421 *isl6421 = (struct isl6421 *) fe->sec_priv;<br>***************<br>*** 109,114 ****<br>--- 111,117 ----<br><br> /* default configuration */<br> isl6421->config = ISL6421_ISEL1;<br>
+ if (! dcl) isl6421->config |= ISL6421_DCL;<br> isl6421->i2c = i2c;<br> isl6421->i2c_addr = i2c_addr;<br> fe->sec_priv = isl6421;<br>***************<br>*** 134,139 ****<br>--- 137,145 ----<br>
<br> return fe;<br> }<br>+ module_param(dcl, int, 0644);<br>+ MODULE_PARM_DESC(dcl, "Turn on/off dynamic current limit (default:on).");<br>+<br> EXPORT_SYMBOL(isl6421_attach);<br><br> MODULE_DESCRIPTION("Driver for lnb supply and control ic isl6421");<br>
<br> </div>