aboutsummaryrefslogtreecommitdiff
path: root/net/atm/proc.c
diff options
context:
space:
mode:
authorKevin Hilman <khilman@mvista.com>2006-08-15 02:02:33 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-08-17 16:29:53 -0700
commitb9c6e3e96669ade31afd3a39f17393e577b609c5 (patch)
treea503803033ea92a516c41312f6bdac65e5bd80d9 /net/atm/proc.c
parent932f3772cf76cc1b1fd1538ceee3edba9bf2164f (diff)
[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>
Diffstat (limited to 'net/atm/proc.c')
-rw-r--r--net/atm/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/proc.c b/net/atm/proc.c
index 3f95b0886a6..91fe5f53ff1 100644
--- a/net/atm/proc.c
+++ b/net/atm/proc.c
@@ -507,7 +507,7 @@ err_out:
goto out;
}
-void __exit atm_proc_exit(void)
+void atm_proc_exit(void)
{
atm_proc_dirs_remove();
}