All of lore.kernel.org
 help / color / mirror / Atom feed
* 2.6.0-test7: saa7134 breaks on gcc 2.95
@ 2003-10-15  0:38 Eyal Lebedinsky
  2003-10-15  0:59 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Eyal Lebedinsky @ 2003-10-15  0:38 UTC (permalink / raw)
  To: list linux-kernel

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

This compiler does not like dangling comma in funcs, so this patch
is needed. For:

#define dprintk(fmt, arg...)    if (core_debug) \
	printk(KERN_DEBUG "%s/core: " fmt, dev->name, ## arg)

Lines like this:

	dprintk("hwinit1\n");

should be hacked like this:

	dprintk("hwinit1\n", "");

Or maybe someone knows a better solution.

--
Eyal Lebedinsky (eyal@eyal.emu.id.au) <http://samba.org/eyal/>

[-- Attachment #2: 2.6.0-test7.saa7134-core.patch --]
[-- Type: text/plain, Size: 821 bytes --]

--- linux/drivers/media/video/saa7134/saa7134-core.c.orig	Wed Oct 15 10:30:44 2003
+++ linux/drivers/media/video/saa7134/saa7134-core.c	Wed Oct 15 10:31:10 2003
@@ -624,7 +624,7 @@
 /* early init (no i2c, no irq) */
 static int saa7134_hwinit1(struct saa7134_dev *dev)
 {
-	dprintk("hwinit1\n");
+	dprintk("hwinit1\n", "");
 
 	saa_writel(SAA7134_IRQ1, 0);
 	saa_writel(SAA7134_IRQ2, 0);
@@ -675,7 +675,7 @@
 /* late init (with i2c + irq) */
 static int saa7134_hwinit2(struct saa7134_dev *dev)
 {
-	dprintk("hwinit2\n");
+	dprintk("hwinit2\n", "");
 
 	saa7134_video_init2(dev);
 	saa7134_tvaudio_init2(dev);
@@ -703,7 +703,7 @@
 /* shutdown */
 static int saa7134_hwfini(struct saa7134_dev *dev)
 {
-	dprintk("hwfini\n");
+	dprintk("hwfini\n", "");
 
 	switch (dev->pci->device) {
 	case PCI_DEVICE_ID_PHILIPS_SAA7134:

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-10-15  5:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-15  0:38 2.6.0-test7: saa7134 breaks on gcc 2.95 Eyal Lebedinsky
2003-10-15  0:59 ` Andrew Morton
2003-10-15  5:16   ` Ingo Oeser
2003-10-15  5:34     ` Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.