linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [linux-2.6.0-test1] Missing #include lines with alsa at alpha
@ 2003-07-17  7:24 Przemysław Stanisław Knycz
  2003-07-17  9:43 ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Przemysław Stanisław Knycz @ 2003-07-17  7:24 UTC (permalink / raw)
  To: linux-kernel


I've noticed that alsa_lib.c have missed afair #include linux/module.h
or init.h. Somebody is more oriented at this problem ? I've fixed it,
but i must test it, after that i can send the patch ;)

cheers

-- 
.----[ a d m i n at w o m b b dot e d u dot p l ]----.
| Przemysław Stanisław Knycz,  djrzulf@jabber.gda.pl |
| Net/Sys Administrator, PLD Developer,  RLU: 213344 |
`------ "Linux - the choice of GNU generation" ------'

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

* Re: [linux-2.6.0-test1] Missing #include lines with alsa at alpha
  2003-07-17  7:24 [linux-2.6.0-test1] Missing #include lines with alsa at alpha Przemysław Stanisław Knycz
@ 2003-07-17  9:43 ` Takashi Iwai
  2003-07-17 20:36   ` Przemysław Stanisław Knycz
  0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2003-07-17  9:43 UTC (permalink / raw)
  To: Przemysław Stanisław Knycz; +Cc: linux-kernel

At Thu, 17 Jul 2003 09:24:32 +0200,
Przemysław Stanisław Knycz wrote:
> 
> 
> I've noticed that alsa_lib.c have missed afair #include linux/module.h
> or init.h. Somebody is more oriented at this problem ? I've fixed it,
> but i must test it, after that i can send the patch ;)

could you tell me which file exactly?


-- 
Takashi Iwai <tiwai@suse.de>		SuSE Linux AG - www.suse.de
ALSA Developer				ALSA Project - www.alsa-project.org

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

* Re: [linux-2.6.0-test1] Missing #include lines with alsa at alpha
  2003-07-17  9:43 ` Takashi Iwai
@ 2003-07-17 20:36   ` Przemysław Stanisław Knycz
  2003-07-18 10:08     ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Przemysław Stanisław Knycz @ 2003-07-17 20:36 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: linux-kernel

On Thu, Jul 17, 2003 at 11:43:59AM +0200, Takashi Iwai wrote:
> could you tell me which file exactly?

sound/
./pcmcia/vx/vxpocket.c
./pci/rme9652/hdsp.c
./drivers/opl4/opl4_lib.c

--- ./sound/pcmcia/vx/vxpocket.c~     2003-07-14 05:31:21.000000000 +0200
+++ ./sound/pcmcia/vx/vxpocket.c      2003-07-16 22:06:22.000000000 +0200
@@ -35,6 +35,7 @@
 #include <pcmcia/version.h>
 #include "vxpocket.h"
 #include <sound/initval.h>
+#include <linux/init.h>
  
 /*
  */
--- ./sound/pci/rme9652/hdsp.c~       2003-07-14 05:32:41.000000000 +0200
+++ ./sound/pci/rme9652/hdsp.c        2003-07-16 22:03:09.000000000 +0200
@@ -26,6 +26,7 @@
 #include <linux/interrupt.h>
 #include <linux/slab.h>
 #include <linux/pci.h>
+#include <linux/init.h>
  
 #include <sound/core.h>
 #include <sound/control.h>
--- ./sound/drivers/opl4/opl4_lib.c~  2003-07-17 22:07:25.000000000 +0200
+++ ./sound/drivers/opl4/opl4_lib.c   2003-07-17 22:15:24.000000000 +0200
@@ -21,6 +21,7 @@
 #include <sound/initval.h>
 #include <linux/ioport.h>
 #include <asm/io.h>
+#include <linux/init.h>
  
 MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
 MODULE_DESCRIPTION("OPL4 driver");


This patches allow to build it without problems. Happy bugtracking :)

-- 
.----[ a d m i n at w o m b b dot e d u dot p l ]----.
| Przemysław Stanisław Knycz,  Registered Linux User |
| Net/Sys Administrator, PLD Developer,       213344 |
`------ "Linux - the choice of GNU generation" ------'

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

* Re: [linux-2.6.0-test1] Missing #include lines with alsa at alpha
  2003-07-17 20:36   ` Przemysław Stanisław Knycz
@ 2003-07-18 10:08     ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2003-07-18 10:08 UTC (permalink / raw)
  To: Przemysław Stanisław Knycz; +Cc: linux-kernel

At Thu, 17 Jul 2003 22:36:56 +0200,
Przemysław Stanisław Knycz wrote:
> 
> On Thu, Jul 17, 2003 at 11:43:59AM +0200, Takashi Iwai wrote:
> > could you tell me which file exactly?
> 
> sound/
> ./pcmcia/vx/vxpocket.c
> ./pci/rme9652/hdsp.c
> ./drivers/opl4/opl4_lib.c

thanks, i fixed the ALSA cvs.
the patchset will be submitted later...


Takashi

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

end of thread, other threads:[~2003-07-18  9:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-17  7:24 [linux-2.6.0-test1] Missing #include lines with alsa at alpha Przemysław Stanisław Knycz
2003-07-17  9:43 ` Takashi Iwai
2003-07-17 20:36   ` Przemysław Stanisław Knycz
2003-07-18 10:08     ` Takashi Iwai

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).