Commit 354b591b authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

[PATCH] awe_wave (OSS): too much __exit

'make buildcheck' indicates that these functions should not be in an __exit
section, so undo that.  Yes, they can be called from .text.
Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 42720989
......@@ -4130,7 +4130,7 @@ static void __init attach_mixer(void)
}
}
static void __exit unload_mixer(void)
static void unload_mixer(void)
{
if (my_mixerdev >= 0)
sound_unload_mixerdev(my_mixerdev);
......@@ -4968,7 +4968,7 @@ static void __init attach_midiemu(void)
midi_devs[my_mididev] = &awe_midi_operations;
}
static void __exit unload_midiemu(void)
static void unload_midiemu(void)
{
if (my_mididev >= 0)
sound_unload_mididev(my_mididev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment