dect
/
linux-2.6
Archived
13
0
Fork 0

[ATM]: Compile error on ARM

atm_proc_exit() is declared as __exit, and thus in .exit.text.  On
some architectures (ARM) .exit.text is discarded at compile time, and
since atm_proc_exit() is called by some other __init functions, it
results in a link error.

Signed-off-by: Kevin Hilman <khilman@mvista.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Kevin Hilman 2006-08-15 02:02:33 -07:00 committed by David S. Miller
parent 932f3772cf
commit b9c6e3e966
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ err_out:
goto out;
}
void __exit atm_proc_exit(void)
void atm_proc_exit(void)
{
atm_proc_dirs_remove();
}