public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix saa7146 compilation on 2.6.8-rc1
@ 2004-07-12  8:25 colin
  2004-07-12 15:20 ` Geert Uytterhoeven
  2004-07-12 19:47 ` Michael Hunold
  0 siblings, 2 replies; 5+ messages in thread
From: colin @ 2004-07-12  8:25 UTC (permalink / raw)
  To: michael; +Cc: linux-kernel

Hi,
this patch fixes a compilation error on 2.6.8-rc1. Here's the error:
drivers/media/common/saa7146_video.c:3: conflicting types for `memory'
include/asm-m68k/setup.h:365: previous declaration of `memory'
make[3]: *** [drivers/media/common/saa7146_video.o] Error 1

hth.

Signed-off-by: Colin Leroy <colin@colino.net>

--- a/drivers/media/common/saa7146_video.c	2004-07-12 10:15:51.833352344 +0200
+++ b/drivers/media/common/saa7146_video.c	2004-07-12 10:16:21.209886432 +0200
@@ -1,9 +1,9 @@
 #include <media/saa7146_vv.h>
 
-static int memory = 32;
+static int max_memory = 32;
 
-MODULE_PARM(memory,"i");
-MODULE_PARM_DESC(memory, "maximum memory usage for capture buffers (default: 32Mb)");
+MODULE_PARM(max_memory,"i");
+MODULE_PARM_DESC(max_memory, "maximum memory usage for capture buffers (default: 32Mb)");
 
 #define IS_CAPTURE_ACTIVE(fh) \
 	(((vv->video_status & STATUS_CAPTURE) != 0) && (vv->video_fh == fh))
@@ -1331,9 +1331,9 @@
 
 	*size = fh->video_fmt.sizeimage;
 
-	/* check if we exceed the "memory" parameter */
-	if( (*count * *size) > (memory*1048576) ) {
-		*count = (memory*1048576) / *size;
+	/* check if we exceed the "max_memory" parameter */
+	if( (*count * *size) > (max_memory*1048576) ) {
+		*count = (max_memory*1048576) / *size;
 	}
 	
 	DEB_CAP(("%d buffers, %d bytes each.\n",*count,*size));


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

* Re: [PATCH] fix saa7146 compilation on 2.6.8-rc1
  2004-07-12  8:25 [PATCH] fix saa7146 compilation on 2.6.8-rc1 colin
@ 2004-07-12 15:20 ` Geert Uytterhoeven
  2004-07-12 15:31   ` Colin LEROY
  2004-07-12 19:47 ` Michael Hunold
  1 sibling, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2004-07-12 15:20 UTC (permalink / raw)
  To: colin; +Cc: michael, Linux Kernel Development

On Mon, 12 Jul 2004 colin@colino.net wrote:
> this patch fixes a compilation error on 2.6.8-rc1. Here's the error:
> drivers/media/common/saa7146_video.c:3: conflicting types for `memory'
> include/asm-m68k/setup.h:365: previous declaration of `memory'
> make[3]: *** [drivers/media/common/saa7146_video.o] Error 1

But there's nothing named plain `memory' in include/asm-m68k/setup.h?!?!?
Actually there never has been...

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

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

* Re: [PATCH] fix saa7146 compilation on 2.6.8-rc1
  2004-07-12 15:20 ` Geert Uytterhoeven
@ 2004-07-12 15:31   ` Colin LEROY
  2004-07-12 15:40     ` Geert Uytterhoeven
  0 siblings, 1 reply; 5+ messages in thread
From: Colin LEROY @ 2004-07-12 15:31 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: michael, Linux Kernel Development


> On Mon, 12 Jul 2004 colin@colino.net wrote:
> > this patch fixes a compilation error on 2.6.8-rc1. Here's the error:
> > drivers/media/common/saa7146_video.c:3: conflicting types for `memory'
> > include/asm-m68k/setup.h:365: previous declaration of `memory'
> > make[3]: *** [drivers/media/common/saa7146_video.o] Error 1
> 
> But there's nothing named plain `memory' in include/asm-m68k/setup.h?!?!?
> Actually there never has been...

Right, but (i should have specified, sorry), I compiled on ppc32, and there's

#define m68k_num_memory num_memory
#define m68k_memory memory
#include <asm-m68k/setup.h

in include/asm-ppc/setup.h. 

-- 
Colin

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

* Re: [PATCH] fix saa7146 compilation on 2.6.8-rc1
  2004-07-12 15:31   ` Colin LEROY
@ 2004-07-12 15:40     ` Geert Uytterhoeven
  0 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2004-07-12 15:40 UTC (permalink / raw)
  To: Colin LEROY
  Cc: michael, Linux Kernel Development, Linux/PPC on APUS development

On Mon, 12 Jul 2004, Colin LEROY wrote:
> > On Mon, 12 Jul 2004 colin@colino.net wrote:
> > > this patch fixes a compilation error on 2.6.8-rc1. Here's the error:
> > > drivers/media/common/saa7146_video.c:3: conflicting types for `memory'
> > > include/asm-m68k/setup.h:365: previous declaration of `memory'
> > > make[3]: *** [drivers/media/common/saa7146_video.o] Error 1
> >
> > But there's nothing named plain `memory' in include/asm-m68k/setup.h?!?!?
> > Actually there never has been...
>
> Right, but (i should have specified, sorry), I compiled on ppc32, and there's
>
> #define m68k_num_memory num_memory
> #define m68k_memory memory
> #include <asm-m68k/setup.h
>
> in include/asm-ppc/setup.h.

Ah, didn't think of that (I should have known ;-)

Looks like the APUS code can need some clean up. E.g. arch/ppc/amiga/bootinfo.c
operates on both memory and m68k_memory, while they are identical due to
<asm/setup.h>...

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

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

* Re: [PATCH] fix saa7146 compilation on 2.6.8-rc1
  2004-07-12  8:25 [PATCH] fix saa7146 compilation on 2.6.8-rc1 colin
  2004-07-12 15:20 ` Geert Uytterhoeven
@ 2004-07-12 19:47 ` Michael Hunold
  1 sibling, 0 replies; 5+ messages in thread
From: Michael Hunold @ 2004-07-12 19:47 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: colin, linux-kernel, Andrew Morton

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

Hello Linus, Andrew,

On 07/12/04 10:25, colin@colino.net wrote:
> this patch fixes a compilation error on 2.6.8-rc1. Here's the error:
> drivers/media/common/saa7146_video.c:3: conflicting types for `memory'
> include/asm-m68k/setup.h:365: previous declaration of `memory'
> make[3]: *** [drivers/media/common/saa7146_video.o] Error 1

Colin's patch is fine, an updated version of the patch with an 
additional signed-off line is attached.

Please apply. Thanks!

CU
Michael.

[-- Attachment #2: saa7146-memory-variable.diff --]
[-- Type: text/plain, Size: 1107 bytes --]

Signed-off-by: Colin Leroy <colin@colino.net>
Signed-off-by: Michael Hunold <hunold@linuxtv.org>

--- a/drivers/media/common/saa7146_video.c	2004-07-12 10:15:51.833352344 +0200
+++ b/drivers/media/common/saa7146_video.c	2004-07-12 10:16:21.209886432 +0200
@@ -1,9 +1,9 @@
 #include <media/saa7146_vv.h>
 
-static int memory = 32;
+static int max_memory = 32;
 
-MODULE_PARM(memory,"i");
-MODULE_PARM_DESC(memory, "maximum memory usage for capture buffers (default: 32Mb)");
+MODULE_PARM(max_memory,"i");
+MODULE_PARM_DESC(max_memory, "maximum memory usage for capture buffers (default: 32Mb)");
 
 #define IS_CAPTURE_ACTIVE(fh) \
 	(((vv->video_status & STATUS_CAPTURE) != 0) && (vv->video_fh == fh))
@@ -1331,9 +1331,9 @@
 
 	*size = fh->video_fmt.sizeimage;
 
-	/* check if we exceed the "memory" parameter */
-	if( (*count * *size) > (memory*1048576) ) {
-		*count = (memory*1048576) / *size;
+	/* check if we exceed the "max_memory" parameter */
+	if( (*count * *size) > (max_memory*1048576) ) {
+		*count = (max_memory*1048576) / *size;
 	}
 	
 	DEB_CAP(("%d buffers, %d bytes each.\n",*count,*size));

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

end of thread, other threads:[~2004-07-12 19:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-12  8:25 [PATCH] fix saa7146 compilation on 2.6.8-rc1 colin
2004-07-12 15:20 ` Geert Uytterhoeven
2004-07-12 15:31   ` Colin LEROY
2004-07-12 15:40     ` Geert Uytterhoeven
2004-07-12 19:47 ` Michael Hunold

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