diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-04-22 14:46:06 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 14:07:52 -0300 |
commit | 5555309c9adcf9bb7f6b449ef45b09d5c26ef4ae (patch) | |
tree | 43cde0dd327dffe23bcbaf9612e64299566f7485 /drivers/media/dvb/frontends/tda18271.h | |
parent | ab8b870e430d3e2cfb299f81e0ae0aef7fe5bfda (diff) | |
download | linux-3.10-5555309c9adcf9bb7f6b449ef45b09d5c26ef4ae.tar.gz linux-3.10-5555309c9adcf9bb7f6b449ef45b09d5c26ef4ae.tar.bz2 linux-3.10-5555309c9adcf9bb7f6b449ef45b09d5c26ef4ae.zip |
V4L/DVB (7383): tda18271: add attach-time parameter to limit i2c transfer size
Add attach-time parameter, "small_i2c" to limit i2c transfer size to write
at most 16 registers at a time during initialization.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/frontends/tda18271.h')
-rw-r--r-- | drivers/media/dvb/frontends/tda18271.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/tda18271.h b/drivers/media/dvb/frontends/tda18271.h index 24b0e35a2ab..e79441e2271 100644 --- a/drivers/media/dvb/frontends/tda18271.h +++ b/drivers/media/dvb/frontends/tda18271.h @@ -58,6 +58,9 @@ struct tda18271_config { /* use i2c gate provided by analog or digital demod */ enum tda18271_i2c_gate gate; + + /* some i2c providers cant write all 39 registers at once */ + unsigned int small_i2c:1; }; #if defined(CONFIG_DVB_TDA18271) || (defined(CONFIG_DVB_TDA18271_MODULE) && defined(MODULE)) |