Commit 3ae81f12 authored by Andrew Morton's avatar Andrew Morton Committed by David S. Miller

[PATCH] fix .text.exit error in OSS awe_wave.c

From: Adrian Bunk <bunk@fs.tum.de>

I got a .exit.text error in 2.5.65.

The problem is that in sound/oss/awe_wave.c the __init function
_attach_awe calls the __exit function awe_release_region.

The following patch that removes the __exit from awe_release_region
fixes it.
parent e1a1de5f
......@@ -757,7 +757,7 @@ awe_request_region(void)
return 0;
}
static void __exit
static void
awe_release_region(void)
{
if (! port_setuped) return;
......
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