diff options
author | Johannes Stezenbach <devnull@localhost> | 2005-08-31 11:26:50 +0000 |
---|---|---|
committer | Johannes Stezenbach <devnull@localhost> | 2005-08-31 11:26:50 +0000 |
commit | a1b0c8ae076f74c4f683c149b05bde574f24df8b (patch) | |
tree | d14ef4d78e2f64ec5cbf71b973c6f1a794382f86 | |
parent | c000782c9e1ae27ae9eb8a2ca43438b36e8cc684 (diff) | |
download | mediapointer-dvb-s2-a1b0c8ae076f74c4f683c149b05bde574f24df8b.tar.gz mediapointer-dvb-s2-a1b0c8ae076f74c4f683c149b05bde574f24df8b.tar.bz2 |
From: Stuart Auchterlonie <stuarta@squashedfrog.net>
Fix bug in Nebula DigiTV frontend detection for nxt6000.
Signed-off-by: Stuart Auchterlonie <stuarta@squashedfrog.net>
-rw-r--r-- | linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c b/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c index 514dff36e..c5c7672cd 100644 --- a/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c +++ b/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c @@ -574,8 +574,10 @@ static void frontend_init(struct dvb_bt8xx_card *card, u32 type) /* Old Nebula (marked (c)2003 on high profile pci card) has nxt6000 demod */ card->fe = nxt6000_attach(&vp3021_alps_tded4_config, card->i2c_adapter); - if (card->fe != NULL) + if (card->fe != NULL) { dprintk ("dvb_bt8xx: an nxt6000 was detected on your digitv card\n"); + break; + } /* New Nebula (marked (c)2005 on low profile pci card) has mt352 demod */ digitv_alps_tded4_reset(card); |