Age | Commit message (Collapse) | Author |
|
The name member of the i2c_algorithm is never used, although all
drivers conscientiously fill it. We can drop it completely, this
structure doesn't need to have a name.
[PATCH] I2C: Kill i2c_algorithm.id (4/7)
There are no more users of i2c_algorithm.id, so we can finally drop
this structure member.
[PATCH] I2C: Kill i2c_algorithm.id (6/7)
In theory, there should be no more users of I2C_ALGO_* at this point.
However, it happens that several drivers were using I2C_ALGO_* for
adapter ids, so we need to correct these before we can get rid of all
the I2C_ALGO_* definitions.
Note that this also fixes a bug in media/video/tvaudio.c:
/* don't attach on saa7146 based cards,
because dedicated drivers are used */
if ((adap->id & I2C_ALGO_SAA7146))
return 0;
This test was plain broken, as it would succeed for many more adapters
than just the saa7146: any those id would share at least one bit with
the saa7146 id. We are really lucky that the few other adapters we want
this driver to work with did not fulfill that condition.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
|
|
Signed-off-by: Andreas Oberritter <obi@linuxtv.org>
|
|
From: Andrew Morton <akpm@osdl.org>
sparc64:
drivers/media/dvb/pluto2/pluto2.c: In function `pluto2_probe':
drivers/media/dvb/pluto2/pluto2.c:604: error: `DMA_32BIT_MASK' undeclared (first use in this function)
Cc: Andreas Oberritter <obi@linuxtv.org>
Cc: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
|
|
|
|
disable pid filtering if there are no users,
complain if the number of received packets does not match 'nbpackets',
print the card's serial number,
Signed-off-by: Andreas Oberritter <obi@linuxtv.org>
|
|
device as proposed in Documentation/pci.txt
- set n_i2c to 3 (tda10046)
|
|
|
|
|
|
The TDA10046 driver (pluto_fe.c) still needs to be merged with tda1004x.c
known issues:
machine might freeze during bad reception
machine might freeze on module unload
-> ejecting the cardbus card might help sometimes
|