linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [2.5 patch] fix section type conflict in sound/isa/sscape.c
@ 2003-07-13 20:17 Adrian Bunk
  2003-07-17  0:42 ` Rusty Russell
  0 siblings, 1 reply; 2+ messages in thread
From: Adrian Bunk @ 2003-07-13 20:17 UTC (permalink / raw)
  To: perex; +Cc: alsa-devel, linux-kernel, trivial

When compiling 2.5.75-mm1 with !CONFIG_HOTPLUG using gcc 3.3 I got the
following compile error (but it doesn't seem to be specific to -mm):

<--  snip  -->

...
  CC      sound/isa/sscape.o
sound/isa/sscape.c: In function `get_irq_config':
sound/isa/sscape.c:812: error: valid_irq causes a section type conflict
make[2]: *** [sound/isa/sscape.o] Error 1
make[1]: *** [sound/isa] Error 2
make: *** [sound] Error 2

<--  snip  -->


The following patch fixes the problem:


--- linux-2.5.75-mm1/sound/isa/sscape.c.old	2003-07-13 22:10:52.000000000 +0200
+++ linux-2.5.75-mm1/sound/isa/sscape.c	2003-07-13 22:11:21.000000000 +0200
@@ -809,7 +809,7 @@
  */
 static unsigned __devinit get_irq_config(int irq)
 {
-	static const int valid_irq[] __devinitdata = { 9, 5, 7, 10 };
+	static const int valid_irq[] = { 9, 5, 7, 10 };
 	unsigned cfg;
 
 	for (cfg = 0; cfg < ARRAY_SIZE(valid_irq); ++cfg) {




cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


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

* Re: [2.5 patch] fix section type conflict in sound/isa/sscape.c
  2003-07-13 20:17 [2.5 patch] fix section type conflict in sound/isa/sscape.c Adrian Bunk
@ 2003-07-17  0:42 ` Rusty Russell
  0 siblings, 0 replies; 2+ messages in thread
From: Rusty Russell @ 2003-07-17  0:42 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: alsa-devel, linux-kernel

In message <20030713201751.GA12104@fs.tum.de> you write:
> --- linux-2.5.75-mm1/sound/isa/sscape.c.old	2003-07-13 22:10:52.000000000 +0200
> +++ linux-2.5.75-mm1/sound/isa/sscape.c	2003-07-13 22:11:21.000000000 +0200
> @@ -809,7 +809,7 @@
>   */
>  static unsigned __devinit get_irq_config(int irq)
>  {
> -	static const int valid_irq[] __devinitdata = { 9, 5, 7, 10 };
> +	static const int valid_irq[] = { 9, 5, 7, 10 };
>  	unsigned cfg;

Just remove the static.

Rusty.
--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

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

end of thread, other threads:[~2003-07-17  1:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-13 20:17 [2.5 patch] fix section type conflict in sound/isa/sscape.c Adrian Bunk
2003-07-17  0:42 ` Rusty Russell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).