public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [linux-dvb] fix tm6010 compile error
@ 2008-04-18 17:38 Jan Paesmans
  0 siblings, 0 replies; only message in thread
From: Jan Paesmans @ 2008-04-18 17:38 UTC (permalink / raw)
  To: linux-dvb

[-- Attachment #1: Type: text/plain, Size: 299 bytes --]

Hello,

Seems there is a problem compiling mchehab's tree of tm6010 against 
linux kernel 2.6.24.3
It appears to be an argument missing in dvb_register_adapter. Added -1 
as the requested number and added error checking code.
Just a quick and dirty fix, but now at least it compiles.

Regards,

Jan

[-- Attachment #2: tm6010_compile_fix.patch --]
[-- Type: text/x-patch, Size: 599 bytes --]

diff --git a/linux/drivers/media/video/tm6000/tm6000-dvb.c b/linux/drivers/media/video/tm6000/tm6000-dvb.c
--- a/linux/drivers/media/video/tm6000/tm6000-dvb.c
+++ b/linux/drivers/media/video/tm6000/tm6000-dvb.c
@@ -229,7 +229,13 @@ int tm6000_dvb_register(struct tm6000_co
 	}
 
 	ret = dvb_register_adapter(&dvb->adapter, "Trident TVMaster 6000 DVB-T",
-							  THIS_MODULE, &dev->udev->dev);
+							  THIS_MODULE, &dev->udev->dev, -1);
+	if (ret < 0) {
+		printk(KERN_ERR
+			"tm6000: couldn't register adapter\n");
+		goto adapter_err;
+	}
+
 	dvb->adapter.priv = dev;
 
 	if (dvb->frontend) {

[-- Attachment #3: Type: text/plain, Size: 150 bytes --]

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-04-18 17:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-18 17:38 [linux-dvb] fix tm6010 compile error Jan Paesmans

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox