diff options
author | Devin Heitmueller <dheitmueller@linuxtv.org> | 2009-03-11 01:58:53 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:43:24 -0400 |
commit | ea2278633ab4728c41b4043f47df4d3e39131992 (patch) | |
tree | cca377d7c1e1e7b8b9ea483e5a07954b14409b2e /drivers/media/video | |
parent | e9d4a6d5ef58a700d3add96ffb984741c6e34fff (diff) |
V4L/DVB (11059): xc5000: fix bug for hybrid xc5000 devices with IF other than 5380
The xc5000 driver has a bug where the IF is always set to whatever the first
caller to dvb_attach() provides. This fails when the device requires an IF
other than 5380 and the analog driver is loaded first through tuner-core
(which always supplies the hard-coded value of 5380).
Thanks to Michael Krufky <mkrufky@linuxtv.org> and Steven Toth
<stoth@linuxtv.org> for providing sample hardware, engineering level support,
and testing.
Signed-off-by: Devin Heitmueller <dheitmueller@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/tuner-core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index 30640fbfd0f9..2a957e2beabf 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c | |||
@@ -452,7 +452,8 @@ static void set_type(struct i2c_client *c, unsigned int type, | |||
452 | struct dvb_tuner_ops *xc_tuner_ops; | 452 | struct dvb_tuner_ops *xc_tuner_ops; |
453 | 453 | ||
454 | xc5000_cfg.i2c_address = t->i2c->addr; | 454 | xc5000_cfg.i2c_address = t->i2c->addr; |
455 | xc5000_cfg.if_khz = 5380; | 455 | /* if_khz will be set when the digital dvb_attach() occurs */ |
456 | xc5000_cfg.if_khz = 0; | ||
456 | if (!dvb_attach(xc5000_attach, | 457 | if (!dvb_attach(xc5000_attach, |
457 | &t->fe, t->i2c->adapter, &xc5000_cfg)) | 458 | &t->fe, t->i2c->adapter, &xc5000_cfg)) |
458 | goto attach_failed; | 459 | goto attach_failed; |