From: Adrian Bunk 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 follo(forwarded by akpm@digeo.com)wing patch that removes the __exit from awe_release_region fixes it. (forwarded by akpm@digeo.com) sound/oss/awe_wave.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN sound/oss/awe_wave.c~awe_wave-linkage-error-fix sound/oss/awe_wave.c --- 25/sound/oss/awe_wave.c~awe_wave-linkage-error-fix 2003-03-20 18:25:40.000000000 -0800 +++ 25-akpm/sound/oss/awe_wave.c 2003-03-20 18:25:40.000000000 -0800 @@ -757,7 +757,7 @@ err_out: return 0; } -static void __exit +static void awe_release_region(void) { if (! port_setuped) return; _