mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-06 11:06:42 +07:00
V4L/DVB (7396): saa7134: fixed pointer in tuner callback
The pointer transferred directly points to the saa7134_dev structure Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
e9c1ac9d8d
commit
0fea03fbd3
@ -5258,8 +5258,7 @@ static int saa7134_tda8290_callback(struct saa7134_dev *dev,
|
||||
|
||||
int saa7134_tuner_callback(void *priv, int command, int arg)
|
||||
{
|
||||
struct i2c_algo_bit_data *i2c_algo = priv;
|
||||
struct saa7134_dev *dev = i2c_algo->data;
|
||||
struct saa7134_dev *dev = priv;
|
||||
if (dev != NULL) {
|
||||
switch (dev->tuner_type) {
|
||||
case TUNER_PHILIPS_TDA8290:
|
||||
|
@ -1199,7 +1199,6 @@ static int dvb_init(struct saa7134_dev *dev)
|
||||
struct xc2028_config cfg = {
|
||||
.i2c_adap = &dev->i2c_adap,
|
||||
.i2c_addr = 0x61,
|
||||
.video_dev = dev->i2c_adap.algo_data,
|
||||
};
|
||||
fe = dvb_attach(xc2028_attach, dev->dvb.frontend, &cfg);
|
||||
if (!fe) {
|
||||
|
Loading…
Reference in New Issue
Block a user