[PATCH] dmasound core fixes

From: Geert Uytterhoeven
Date: Fri Aug 29 2003 - 10:10:12 EST


Dmasound core fixes from Christoph Hellwig in 2.6.0:
- Some exported symbols are declared __init - in the modular case this is
freed before the other modules can call it..

--- linux-2.4.23-pre1/drivers/sound/dmasound/dmasound_core.c Tue Aug 26 12:22:41 2003
+++ linux-m68k-2.4.23-pre1/drivers/sound/dmasound/dmasound_core.c Wed Aug 27 18:46:28 2003
@@ -374,7 +374,7 @@
release: mixer_release,
};

-static void __init mixer_init(void)
+static void mixer_init(void)
{
#ifndef MODULE
int mixer_unit;
@@ -1339,7 +1339,7 @@
#endif
};

-static int __init sq_init(void)
+static int sq_init(void)
{
#ifndef MODULE
int sq_unit;
@@ -1556,7 +1556,7 @@
release: state_release,
};

-static int __init state_init(void)
+static int state_init(void)
{
#ifndef MODULE
int state_unit;
@@ -1575,7 +1575,7 @@
* This function is called by _one_ chipset-specific driver
*/

-int __init dmasound_init(void)
+int dmasound_init(void)
{
int res ;
#ifdef MODULE
@@ -1646,7 +1646,7 @@

#else /* !MODULE */

-static int __init dmasound_setup(char *str)
+static int dmasound_setup(char *str)
{
int ints[6], size;


Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx

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
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/