aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/bt8xx/dvb-bt8xx.c
diff options
context:
space:
mode:
authorStuart Auchterlonie <stuarta@squashedfrog.net>2005-09-09 13:02:56 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-09 13:57:42 -0700
commitf30db067a593aeb3fdd97ec0a3e6399ea566f2ad (patch)
treef8e6a4365f1678af4fd0b3834f995d2cbe380e37 /drivers/media/dvb/bt8xx/dvb-bt8xx.c
parent05ade5a5cd32f8393c22fc454b0546df2ed497c5 (diff)
downloadkernel_samsung_smdk4412-f30db067a593aeb3fdd97ec0a3e6399ea566f2ad.zip
kernel_samsung_smdk4412-f30db067a593aeb3fdd97ec0a3e6399ea566f2ad.tar.gz
kernel_samsung_smdk4412-f30db067a593aeb3fdd97ec0a3e6399ea566f2ad.tar.bz2
[PATCH] dvb: nebula DigiTV nxt6000 fix
Fix bug in Nebula DigiTV frontend detection for nxt6000. Signed-off-by: Stuart Auchterlonie <stuarta@squashedfrog.net> Signed-off-by: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/dvb/bt8xx/dvb-bt8xx.c')
-rw-r--r--drivers/media/dvb/bt8xx/dvb-bt8xx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/dvb/bt8xx/dvb-bt8xx.c b/drivers/media/dvb/bt8xx/dvb-bt8xx.c
index 514dff3..c5c7672 100644
--- a/drivers/media/dvb/bt8xx/dvb-bt8xx.c
+++ b/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);