diff mbox

Disable dynamic current limit for ttpci budget cards

Message ID 20110521161212.334204a1@borg.bxl.tuxicoman.be (mailing list archive)
State Under Review
Headers show

Commit Message

Guy Martin May 21, 2011, 2:12 p.m. UTC
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
diff mbox

Patch

diff --git a/drivers/media/dvb/ttpci/budget.c b/drivers/media/dvb/ttpci/budget.c
index d238fb9..91340ab 100644
--- a/drivers/media/dvb/ttpci/budget.c
+++ b/drivers/media/dvb/ttpci/budget.c
@@ -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,
 };