Disable dynamic current limit for ttpci budget cards
Commit Message
Disable dynamic current limit for ttpci budget cards.
According to the ISL6423 datasheet, if dynamic current limiting is turned on,
the static limit is ignored and the current drawn can be as high as 990mW.
This is not what we want as it might overload the PCI bus. Disabling
dynamic limit also avoid issues with rotors and DiSEqC switches which
might require a higher current for a short period when powered on.
Signed-off-by: Guy Martin <gmsoft@tuxicoman.be>
--
drivers/media/dvb/ttpci/budget.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
@@ -462,7 +462,7 @@ static struct stv6110x_config tt1600_stv6110x_config = {
static struct isl6423_config tt1600_isl6423_config = {
.current_max = SEC_CURRENT_515m,
- .curlim = SEC_CURRENT_LIM_ON,
+ .curlim = SEC_CURRENT_LIM_OFF,
.mod_extern = 1,
.addr = 0x08,
};