Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[linux-dvb] Re: Budget DVB-C tuning problems



Jouni Karvo wrote:
> 
> I have the same card (TT Budget C) and same problems (HTV DVB-C
> network, FI), kernel 2.6.1 linuxtv-dvb-1.1.0

Have you tried current CVS? Or at least updated dvb_frontend.c
to fix this bug:

Index: linux/drivers/media/dvb/dvb-core/dvb_frontend.c
===================================================================
RCS file: /cvs/linuxtv/dvb-kernel/linux/drivers/media/dvb/dvb-core/dvb_frontend.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -p -r1.58 -r1.59
--- linux/drivers/media/dvb/dvb-core/dvb_frontend.c	31 Jan 2004 11:56:17 -0000	1.58
+++ linux/drivers/media/dvb/dvb-core/dvb_frontend.c	7 Feb 2004 16:19:23 -0000	1.59
@@ -446,7 +446,7 @@ static int dvb_frontend_thread (void *da
 	while (1) {
 		up (&fe->sem);      /* is locked when we enter the thread... */
 
-		timeout = wait_event_interruptible_timeout(fe->wait_queue,0 != dvb_frontend_is_exiting (fe), 5*HZ);
+		timeout = wait_event_interruptible_timeout(fe->wait_queue,0 != dvb_frontend_is_exiting (fe), delay);
 		if (-ERESTARTSYS == timeout || 0 != dvb_frontend_is_exiting (fe)) {
 			/* got signal or quitting */
 			break;

Johannes


-- 
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe linux-dvb" as subject.



Home | Main Index | Thread Index