diff options
author | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2006-08-06 12:47:16 +1000 |
---|---|---|
committer | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2006-08-06 12:47:16 +1000 |
commit | 4b7451caa9ce14c39b26eb7c953be5c037ebb40e (patch) | |
tree | 145f9915fac9b6bf8b9d4f5efdafe631a67b9dd4 /linux/drivers/media/dvb/b2c2 | |
parent | 660c810f401a2a54ed59ddfcb2b3c75228a8ca57 (diff) | |
download | mediapointer-dvb-s2-4b7451caa9ce14c39b26eb7c953be5c037ebb40e.tar.gz mediapointer-dvb-s2-4b7451caa9ce14c39b26eb7c953be5c037ebb40e.tar.bz2 |
flexcop/nxt200x attach fix
From: Chris Pascoe <c.pascoe@itee.uq.edu.au>
Address another case where the test in dvb-pll to see if a tuner's
PLL responds when attaching may fail.
Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au>
Diffstat (limited to 'linux/drivers/media/dvb/b2c2')
-rw-r--r-- | linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c b/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c index d8137a9b4..fbca9ed4b 100644 --- a/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c +++ b/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c @@ -538,7 +538,7 @@ int flexcop_frontend_init(struct flexcop_device *fc) /* try the air atsc 2nd generation (nxt2002) */ if ((fc->fe = dvb_attach(nxt200x_attach, &samsung_tbmv_config, &fc->i2c_adap)) != NULL) { fc->dev_type = FC_AIR_ATSC2; - dvb_attach(dvb_pll_attach, fc->fe, 0x61, &fc->i2c_adap, &dvb_pll_samsung_tbmv); + dvb_attach(dvb_pll_attach, fc->fe, 0x61, NULL, &dvb_pll_samsung_tbmv); info("found the nxt2002 at i2c address: 0x%02x",samsung_tbmv_config.demod_address); } else /* try the air atsc 3nd generation (lgdt3303) */ |